Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp

Issue 1648523002: DevTools: move InjectedScript* to inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 32
33 #include "bindings/core/v8/ScriptController.h" 33 #include "bindings/core/v8/ScriptController.h"
34 #include "bindings/core/v8/V8Binding.h" 34 #include "bindings/core/v8/V8Binding.h"
35 #include "core/InspectorBackendDispatcher.h" 35 #include "core/InspectorBackendDispatcher.h"
36 #include "core/InspectorFrontend.h" 36 #include "core/InspectorFrontend.h"
37 #include "core/frame/FrameConsole.h" 37 #include "core/frame/FrameConsole.h"
38 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
39 #include "core/frame/LocalFrame.h" 39 #include "core/frame/LocalFrame.h"
40 #include "core/frame/Settings.h" 40 #include "core/frame/Settings.h"
41 #include "core/inspector/IdentifiersFactory.h" 41 #include "core/inspector/IdentifiersFactory.h"
42 #include "core/inspector/InjectedScriptHost.h"
43 #include "core/inspector/InjectedScriptManager.h"
44 #include "core/inspector/InspectedFrames.h" 42 #include "core/inspector/InspectedFrames.h"
45 #include "core/inspector/InspectorAnimationAgent.h" 43 #include "core/inspector/InspectorAnimationAgent.h"
46 #include "core/inspector/InspectorApplicationCacheAgent.h" 44 #include "core/inspector/InspectorApplicationCacheAgent.h"
47 #include "core/inspector/InspectorCSSAgent.h" 45 #include "core/inspector/InspectorCSSAgent.h"
48 #include "core/inspector/InspectorDOMAgent.h" 46 #include "core/inspector/InspectorDOMAgent.h"
49 #include "core/inspector/InspectorDOMDebuggerAgent.h" 47 #include "core/inspector/InspectorDOMDebuggerAgent.h"
50 #include "core/inspector/InspectorDebuggerAgent.h" 48 #include "core/inspector/InspectorDebuggerAgent.h"
51 #include "core/inspector/InspectorHeapProfilerAgent.h" 49 #include "core/inspector/InspectorHeapProfilerAgent.h"
52 #include "core/inspector/InspectorInputAgent.h" 50 #include "core/inspector/InspectorInputAgent.h"
53 #include "core/inspector/InspectorInspectorAgent.h" 51 #include "core/inspector/InspectorInspectorAgent.h"
54 #include "core/inspector/InspectorInstrumentation.h" 52 #include "core/inspector/InspectorInstrumentation.h"
55 #include "core/inspector/InspectorLayerTreeAgent.h" 53 #include "core/inspector/InspectorLayerTreeAgent.h"
56 #include "core/inspector/InspectorMemoryAgent.h" 54 #include "core/inspector/InspectorMemoryAgent.h"
57 #include "core/inspector/InspectorPageAgent.h" 55 #include "core/inspector/InspectorPageAgent.h"
58 #include "core/inspector/InspectorProfilerAgent.h" 56 #include "core/inspector/InspectorProfilerAgent.h"
59 #include "core/inspector/InspectorResourceAgent.h" 57 #include "core/inspector/InspectorResourceAgent.h"
60 #include "core/inspector/InspectorResourceContentLoader.h" 58 #include "core/inspector/InspectorResourceContentLoader.h"
61 #include "core/inspector/InspectorTaskRunner.h" 59 #include "core/inspector/InspectorTaskRunner.h"
62 #include "core/inspector/InspectorTimelineAgent.h" 60 #include "core/inspector/InspectorTimelineAgent.h"
63 #include "core/inspector/InspectorTracingAgent.h" 61 #include "core/inspector/InspectorTracingAgent.h"
64 #include "core/inspector/InspectorWorkerAgent.h" 62 #include "core/inspector/InspectorWorkerAgent.h"
65 #include "core/inspector/InstrumentingAgents.h" 63 #include "core/inspector/InstrumentingAgents.h"
66 #include "core/inspector/LayoutEditor.h" 64 #include "core/inspector/LayoutEditor.h"
67 #include "core/inspector/MainThreadDebugger.h" 65 #include "core/inspector/MainThreadDebugger.h"
68 #include "core/inspector/PageConsoleAgent.h" 66 #include "core/inspector/PageConsoleAgent.h"
69 #include "core/inspector/PageDebuggerAgent.h" 67 #include "core/inspector/PageDebuggerAgent.h"
70 #include "core/inspector/PageRuntimeAgent.h" 68 #include "core/inspector/PageRuntimeAgent.h"
69 #include "core/inspector/v8/InjectedScriptHost.h"
70 #include "core/inspector/v8/InjectedScriptManager.h"
71 #include "core/layout/LayoutView.h" 71 #include "core/layout/LayoutView.h"
72 #include "core/page/FocusController.h" 72 #include "core/page/FocusController.h"
73 #include "core/page/Page.h" 73 #include "core/page/Page.h"
74 #include "modules/accessibility/InspectorAccessibilityAgent.h" 74 #include "modules/accessibility/InspectorAccessibilityAgent.h"
75 #include "modules/cachestorage/InspectorCacheStorageAgent.h" 75 #include "modules/cachestorage/InspectorCacheStorageAgent.h"
76 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h" 76 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h"
77 #include "modules/filesystem/InspectorFileSystemAgent.h" 77 #include "modules/filesystem/InspectorFileSystemAgent.h"
78 #include "modules/indexeddb/InspectorIndexedDBAgent.h" 78 #include "modules/indexeddb/InspectorIndexedDBAgent.h"
79 #include "modules/screen_orientation/ScreenOrientationInspectorAgent.h" 79 #include "modules/screen_orientation/ScreenOrientationInspectorAgent.h"
80 #include "modules/storage/InspectorDOMStorageAgent.h" 80 #include "modules/storage/InspectorDOMStorageAgent.h"
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 if (!InspectorBackendDispatcher::getCommandName(message, &commandName)) 725 if (!InspectorBackendDispatcher::getCommandName(message, &commandName))
726 return false; 726 return false;
727 return commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_pauseCmd) 727 return commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_pauseCmd)
728 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointCmd) 728 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointCmd)
729 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointByUrlCmd) 729 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointByUrlCmd)
730 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd) 730 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd)
731 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd); 731 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd);
732 } 732 }
733 733
734 } // namespace blink 734 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/scripts/compile_frontend.py ('k') | third_party/WebKit/public/blink_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698