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

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

Issue 1286343003: DevTools: make InspectorDebuggerAgent aggregate V8DebuggerAgent instead of inheriting (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed dgozman's comments Created 5 years, 4 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 [DOMDebugger, Inline=FastReturn] 131 [DOMDebugger, Inline=FastReturn]
132 void didFireWebGLErrorOrWarning(Element*, const String& message); 132 void didFireWebGLErrorOrWarning(Element*, const String& message);
133 133
134 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] 134 [AsyncCallTracker, DOMDebugger, Inline=FastReturn]
135 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot); 135 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot);
136 136
137 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] 137 [AsyncCallTracker, DOMDebugger, Inline=FastReturn]
138 void didRemoveTimer([Keep] ExecutionContext*, int timerId); 138 void didRemoveTimer([Keep] ExecutionContext*, int timerId);
139 139
140 [Debugger, Inline=FastReturn] 140 [Debugger, Inline=FastReturn]
141 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst DevToolsFunctionInfo&); 141 InspectorInstrumentationCookie willCallFunction(ExecutionContext*, const Dev ToolsFunctionInfo&);
142 142
143 [Debugger, Inline=FastReturn] 143 [Debugger, Inline=FastReturn]
144 void didCallFunction(const InspectorInstrumentationCookie&); 144 void didCallFunction(const InspectorInstrumentationCookie&);
145 145
146 [AsyncCallTracker, Inline=FastReturn] 146 [AsyncCallTracker, Inline=FastReturn]
147 void didEnqueueEvent([Keep] EventTarget*, Event*); 147 void didEnqueueEvent([Keep] EventTarget*, Event*);
148 148
149 [AsyncCallTracker, Inline=FastReturn] 149 [AsyncCallTracker, Inline=FastReturn]
150 void didRemoveEvent([Keep] EventTarget*, Event*); 150 void didRemoveEvent([Keep] EventTarget*, Event*);
151 151
(...skipping 21 matching lines...) Expand all
173 [AsyncCallTracker, Inline=FastReturn] 173 [AsyncCallTracker, Inline=FastReturn]
174 void didKillAllExecutionContextTasks([Keep] ExecutionContext*); 174 void didKillAllExecutionContextTasks([Keep] ExecutionContext*);
175 175
176 [AsyncCallTracker, Inline=FastReturn] 176 [AsyncCallTracker, Inline=FastReturn]
177 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*); 177 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*);
178 178
179 [AsyncCallTracker, Inline=FastReturn] 179 [AsyncCallTracker, Inline=FastReturn]
180 void didPerformExecutionContextTask(ExecutionContext*); 180 void didPerformExecutionContextTask(ExecutionContext*);
181 181
182 [Debugger, DOMDebugger, Inline=FastReturn] 182 [Debugger, DOMDebugger, Inline=FastReturn]
183 InspectorInstrumentationCookie willEvaluateScript(LocalFrame*, const String& url, int lineNumber); 183 InspectorInstrumentationCookie willEvaluateScript(LocalFrame*);
184 184
185 [Debugger, Inline=FastReturn] 185 [Debugger, Inline=FastReturn]
186 void didEvaluateScript(const InspectorInstrumentationCookie&); 186 void didEvaluateScript(const InspectorInstrumentationCookie&);
187 187
188 [PageRuntime] 188 [PageRuntime]
189 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin *, int worldId); 189 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin *, int worldId);
190 190
191 [PageRuntime, Inline=FastReturn] 191 [PageRuntime, Inline=FastReturn]
192 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); 192 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*);
193 193
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 interface InspectorOverrides { 445 interface InspectorOverrides {
446 [CSS, Inline=FastReturn] 446 [CSS, Inline=FastReturn]
447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
448 448
449 [Worker, Inline=FastReturn] 449 [Worker, Inline=FastReturn]
450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
451 451
452 [Resource, Inline=FastReturn] 452 [Resource, Inline=FastReturn]
453 bool shouldForceCORSPreflight(Document*); 453 bool shouldForceCORSPreflight(Document*);
454 } 454 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/PageDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698