Summary: | Web Inspector: Move InspectorDebuggerAgent into JavaScriptCore | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> | ||||||
Component: | Web Inspector | Assignee: | Nobody <webkit-unassigned> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | bunhere, commit-queue, ggaren, graouts, gyuyoung.kim, joepeck, mark.lam, mkwst, rakuco, timothy, webkit-bug-importer | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | 528+ (Nightly build) | ||||||||
Hardware: | All | ||||||||
OS: | All | ||||||||
Attachments: |
|
Description
Joseph Pecoraro
2014-01-25 13:29:55 PST
Created attachment 222231 [details]
[PATCH] Proposed Fix
- Adds JSGlobalObject ScriptDebugServer, DebuggerAgent, and hooks it up in InspectorController
- Adds JSC EventLoop implementation when paused debugging a JSGlobalObject, separate from WebCore's EventLoop impl
- Adds test for console.assert pausing, which was untested before and had a slight path change
Attachment 222231 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/inspector/JSGlobalObjectInspectorController.cpp:39: Alphabetical sorting problem. [build/include_order] [4]
ERROR: Source/JavaScriptCore/inspector/agents/JSGlobalObjectDebuggerAgent.cpp:31: Alphabetical sorting problem. [build/include_order] [4]
Total errors found: 2 in 38 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 222231 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=222231&action=review > Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:-308 > - <ClCompile Include="..\inspector\agents\JSGlobalObjectRuntimeAgent.cpp"> > - <Filter>inspector</Filter> > - </ClCompile> Oop, I'll also add the InspectorDebuggerAgent.* to the JSC.vcxproj.filters file. Not needed for compile, just for Visual Studio's UI. > Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:4634 > + A503FA1C188E0FB000110F14 /* JSJavaScriptCallFrame.h in Headers */, This looks unnecessary. From and old old version. I'll remove. Created attachment 222239 [details]
[PATCH] Proposed Fix
- Fixed style
- Added to more non-critical build files
- EFL build fix attempt with includes
Comment on attachment 222239 [details]
[PATCH] Proposed Fix
rs=me
Landed <http://trac.webkit.org/changeset/162799>. |