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

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.cpp

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "InspectorInstrumentation.h" 32 #include "InspectorInstrumentation.h"
33 33
34 #include "CSSRule.h" 34 #include "CSSRule.h"
35 #include "CSSStyleRule.h" 35 #include "CSSStyleRule.h"
36 #include "ConsoleAPITypes.h" 36 #include "ConsoleAPITypes.h"
37 #include "ConsoleTypes.h" 37 #include "ConsoleTypes.h"
38 #include "DOMWindow.h" 38 #include "DOMWindow.h"
39 #include "DOMWrapperWorld.h"
39 #include "Database.h" 40 #include "Database.h"
40 #include "DeviceOrientationData.h" 41 #include "DeviceOrientationData.h"
41 #include "DocumentLoader.h" 42 #include "DocumentLoader.h"
42 #include "Event.h" 43 #include "Event.h"
43 #include "EventContext.h" 44 #include "EventContext.h"
44 #include "InspectorAgent.h" 45 #include "InspectorAgent.h"
45 #include "InspectorApplicationCacheAgent.h" 46 #include "InspectorApplicationCacheAgent.h"
46 #include "InspectorDOMDebuggerAgent.h"
47 #include "InspectorCSSAgent.h" 47 #include "InspectorCSSAgent.h"
48 #include "InspectorCanvasAgent.h" 48 #include "InspectorCanvasAgent.h"
49 #include "InspectorConsoleAgent.h" 49 #include "InspectorConsoleAgent.h"
50 #include "InspectorController.h" 50 #include "InspectorController.h"
51 #include "WorkerInspectorController.h" 51 #include "InspectorDOMAgent.h"
52 #include "InspectorDOMDebuggerAgent.h"
53 #include "InspectorDOMStorageAgent.h"
52 #include "InspectorDatabaseAgent.h" 54 #include "InspectorDatabaseAgent.h"
53 #include "InspectorDOMAgent.h"
54 #include "InspectorDOMStorageAgent.h"
55 #include "InspectorDebuggerAgent.h" 55 #include "InspectorDebuggerAgent.h"
56 #include "InspectorHeapProfilerAgent.h" 56 #include "InspectorHeapProfilerAgent.h"
57 #include "InspectorLayerTreeAgent.h" 57 #include "InspectorLayerTreeAgent.h"
58 #include "InspectorPageAgent.h" 58 #include "InspectorPageAgent.h"
59 #include "InspectorProfilerAgent.h" 59 #include "InspectorProfilerAgent.h"
60 #include "InspectorResourceAgent.h" 60 #include "InspectorResourceAgent.h"
61 #include "InspectorTimelineAgent.h" 61 #include "InspectorTimelineAgent.h"
62 #include "InspectorWorkerAgent.h" 62 #include "InspectorWorkerAgent.h"
63 #include "InstrumentingAgents.h" 63 #include "InstrumentingAgents.h"
64 #include "PageDebuggerAgent.h" 64 #include "PageDebuggerAgent.h"
65 #include "PageRuntimeAgent.h" 65 #include "PageRuntimeAgent.h"
66 #include "RenderObject.h" 66 #include "RenderObject.h"
67 #include "ScriptArguments.h" 67 #include "ScriptArguments.h"
68 #include "ScriptCallStack.h" 68 #include "ScriptCallStack.h"
69 #include "ScriptController.h"
69 #include "ScriptProfile.h" 70 #include "ScriptProfile.h"
70 #include "StyleResolver.h" 71 #include "StyleResolver.h"
71 #include "StyleRule.h" 72 #include "StyleRule.h"
72 #include "WorkerContext.h" 73 #include "WorkerContext.h"
74 #include "WorkerInspectorController.h"
73 #include "WorkerRuntimeAgent.h" 75 #include "WorkerRuntimeAgent.h"
74 #include "WorkerThread.h" 76 #include "WorkerThread.h"
75 #include "XMLHttpRequest.h" 77 #include "XMLHttpRequest.h"
76 #include <wtf/StdLibExtras.h> 78 #include <wtf/StdLibExtras.h>
77 #include <wtf/text/CString.h> 79 #include <wtf/text/CString.h>
78 80
79 #include "platform/chromium/TraceEvent.h" 81 #include "platform/chromium/TraceEvent.h"
80 82
81 namespace WebCore { 83 namespace WebCore {
82 84
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 const char BeginFrame[] = "BeginFrame"; 1342 const char BeginFrame[] = "BeginFrame";
1341 }; 1343 };
1342 1344
1343 namespace InstrumentationEventArguments { 1345 namespace InstrumentationEventArguments {
1344 const char LayerId[] = "layerId"; 1346 const char LayerId[] = "layerId";
1345 const char PageId[] = "pageId"; 1347 const char PageId[] = "pageId";
1346 }; 1348 };
1347 1349
1348 } // namespace WebCore 1350 } // namespace WebCore
1349 1351
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorIndexedDBAgent.cpp ('k') | Source/core/inspector/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698