Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(259)

Issue 162045: Split InspectorBackend into three parts: backend, injected script host and frontend host.

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 4 months ago by pfeldman
Modified:
8 years, 4 months ago
Reviewers:
Visibility:
Public.

Description

Split InspectorBackend into three parts: backend, injected script host and frontend host. (Updated and re-baselined)

Patch Set 1 #

Patch Set 2 : Added missing JSInjectedScriptHostCustom.cpp file. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2594 lines, -1510 lines) Patch
M WebCore/ChangeLog View 1 chunk +311 lines, -0 lines 0 comments Download
M WebCore/DerivedSources.make View 1 chunk +2 lines, -0 lines 0 comments Download
M WebCore/GNUmakefile.am View 4 chunks +8 lines, -1 line 0 comments Download
M WebCore/WebCore.gypi View 6 chunks +12 lines, -3 lines 0 comments Download
M WebCore/WebCore.pro View 1 4 chunks +8 lines, -1 line 0 comments Download
M WebCore/WebCore.vcproj/WebCore.vcproj View 1 3 chunks +71 lines, -0 lines 0 comments Download
M WebCore/WebCore.xcodeproj/project.pbxproj View 13 chunks +49 lines, -5 lines 0 comments Download
M WebCore/WebCoreSources.bkl View 3 chunks +6 lines, -1 line 0 comments Download
M WebCore/bindings/js/JSBindingsAllInOne.cpp View 1 chunk +2 lines, -1 line 0 comments Download
A WebCore/bindings/js/JSInjectedScriptHostCustom.cpp View 1 chunk +219 lines, -0 lines 0 comments Download
D WebCore/bindings/js/JSInspectorBackendCustom.cpp View 1 chunk +0 lines, -346 lines 0 comments Download
A WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp View 1 chunk +176 lines, -0 lines 0 comments Download
M WebCore/bindings/js/ScriptObject.h View 1 2 chunks +4 lines, -0 lines 0 comments Download
M WebCore/bindings/js/ScriptObject.cpp View 1 2 chunks +18 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/DOMObjectsInclude.h View 1 chunk +2 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/DerivedSourcesAllInOne.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/ScriptObject.h View 1 2 chunks +4 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/ScriptObject.cpp View 1 2 chunks +16 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/V8Index.h View 1 chunk +3 lines, -1 line 0 comments Download
M WebCore/bindings/v8/V8Index.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M WebCore/bindings/v8/custom/V8CustomBinding.h View 1 1 chunk +13 lines, -19 lines 0 comments Download
A WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp View 1 chunk +163 lines, -0 lines 0 comments Download
D WebCore/bindings/v8/custom/V8InspectorBackendCustom.cpp View 1 chunk +0 lines, -306 lines 0 comments Download
A WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp View 1 chunk +170 lines, -0 lines 0 comments Download
A WebCore/inspector/InjectedScriptHost.h View 1 chunk +89 lines, -0 lines 0 comments Download
A WebCore/inspector/InjectedScriptHost.cpp View 1 chunk +178 lines, -0 lines 0 comments Download
A WebCore/inspector/InjectedScriptHost.idl View 1 chunk +61 lines, -0 lines 0 comments Download
M WebCore/inspector/InspectorBackend.h View 3 chunks +27 lines, -63 lines 0 comments Download
M WebCore/inspector/InspectorBackend.cpp View 1 10 chunks +83 lines, -287 lines 0 comments Download
M WebCore/inspector/InspectorBackend.idl View 3 chunks +11 lines, -45 lines 0 comments Download
M WebCore/inspector/InspectorController.h View 1 4 chunks +8 lines, -0 lines 0 comments Download
M WebCore/inspector/InspectorController.cpp View 1 4 chunks +15 lines, -5 lines 0 comments Download
A WebCore/inspector/InspectorFrontendHost.h View 1 chunk +82 lines, -0 lines 0 comments Download
A WebCore/inspector/InspectorFrontendHost.cpp View 1 chunk +192 lines, -0 lines 0 comments Download
A WebCore/inspector/InspectorFrontendHost.idl View 1 chunk +58 lines, -0 lines 0 comments Download
M WebCore/inspector/front-end/Breakpoint.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/BreakpointsSidebarPane.js View 3 chunks +7 lines, -7 lines 0 comments Download
M WebCore/inspector/front-end/ConsoleView.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/CookieItemsView.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/DOMAgent.js View 3 chunks +6 lines, -6 lines 0 comments Download
M WebCore/inspector/front-end/DOMStorage.js View 1 chunk +3 lines, -3 lines 0 comments Download
M WebCore/inspector/front-end/Database.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/ElementsPanel.js View 6 chunks +9 lines, -14 lines 0 comments Download
WebCore/inspector/front-end/ElementsTreeOutline.js View 1 3 chunks +4 lines, -4 lines 0 comments Download
M WebCore/inspector/front-end/EventListenersSidebarPane.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/InjectedScript.js View 12 chunks +24 lines, -24 lines 0 comments Download
M WebCore/inspector/front-end/InjectedScriptAccess.js View 1 1 chunk +1 line, -1 line 0 comments Download
A WebCore/inspector/front-end/InspectorBackendStub.js View 1 chunk +290 lines, -0 lines 0 comments Download
M WebCore/inspector/front-end/InspectorControllerStub.js View 1 chunk +0 lines, -296 lines 0 comments Download
A WebCore/inspector/front-end/InspectorFrontendHostStub.js View 1 chunk +111 lines, -0 lines 0 comments Download
M WebCore/inspector/front-end/ProfileView.js View 2 chunks +3 lines, -3 lines 0 comments Download
M WebCore/inspector/front-end/ProfilesPanel.js View 3 chunks +6 lines, -6 lines 0 comments Download
M WebCore/inspector/front-end/ResourcesPanel.js View 3 chunks +6 lines, -6 lines 0 comments Download
M WebCore/inspector/front-end/ScriptView.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/ScriptsPanel.js View 15 chunks +19 lines, -19 lines 0 comments Download
M WebCore/inspector/front-end/SourceView.js View 3 chunks +4 lines, -4 lines 0 comments Download
M WebCore/inspector/front-end/StylesSidebarPane.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/TestController.js View 1 chunk +1 line, -1 line 0 comments Download
M WebCore/inspector/front-end/TimelinePanel.js View 1 chunk +2 lines, -2 lines 0 comments Download
M WebCore/inspector/front-end/WatchExpressionsSidebarPane.js View 3 chunks +3 lines, -3 lines 0 comments Download
M WebCore/inspector/front-end/WebKit.qrc View 1 chunk +3 lines, -1 line 0 comments Download
M WebCore/inspector/front-end/inspector.html View 1 chunk +2 lines, -1 line 0 comments Download
M WebCore/inspector/front-end/inspector.js View 1 11 chunks +18 lines, -18 lines 0 comments Download

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b