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

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

Issue 732593002: DevTools: Make StepInto work across script boundaries and Blink process tasks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 1 month 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) 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 [DOMDebugger, Inline=FastReturn] 139 [DOMDebugger, Inline=FastReturn]
140 void didFireWebGLErrorOrWarning(Element*, const String& message); 140 void didFireWebGLErrorOrWarning(Element*, const String& message);
141 141
142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot); 143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot);
144 144
145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
146 void didRemoveTimer([Keep] ExecutionContext*, int timerId); 146 void didRemoveTimer([Keep] ExecutionContext*, int timerId);
147 147
148 [Timeline, Inline=FastReturn] 148 [Debugger, Timeline, Inline=FastReturn]
149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, in t scriptId, const String& scriptName, int scriptLine); 149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, in t scriptId, const String& scriptName, int scriptLine);
150 150
151 [Timeline, Inline=FastReturn] 151 [Timeline, Inline=FastReturn]
152 void didCallFunction(const InspectorInstrumentationCookie&); 152 void didCallFunction(const InspectorInstrumentationCookie&);
153 153
154 [Timeline, Inline=FastReturn] 154 [Timeline, Inline=FastReturn]
155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*); 155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*);
156 156
157 [Timeline, Inline=FastReturn] 157 [Timeline, Inline=FastReturn]
158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&); 158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&);
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 198
199 [Debugger, Inline=FastReturn] 199 [Debugger, Inline=FastReturn]
200 void didKillAllExecutionContextTasks([Keep] ExecutionContext*); 200 void didKillAllExecutionContextTasks([Keep] ExecutionContext*);
201 201
202 [Debugger, Inline=FastReturn] 202 [Debugger, Inline=FastReturn]
203 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*); 203 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*);
204 204
205 [Debugger, Inline=FastReturn] 205 [Debugger, Inline=FastReturn]
206 void didPerformExecutionContextTask(ExecutionContext*); 206 void didPerformExecutionContextTask(ExecutionContext*);
207 207
208 [Timeline, Inline=FastReturn] 208 [Debugger, Timeline, Inline=FastReturn]
209 InspectorInstrumentationCookie willEvaluateScript([Keep] LocalFrame*, const String& url, int lineNumber); 209 InspectorInstrumentationCookie willEvaluateScript([Keep] LocalFrame*, const String& url, int lineNumber);
210 210
211 [Timeline, Inline=FastReturn] 211 [Timeline, Inline=FastReturn]
212 void didEvaluateScript(const InspectorInstrumentationCookie&); 212 void didEvaluateScript(const InspectorInstrumentationCookie&);
213 213
214 [PageRuntime, Inline=FastReturn] 214 [PageRuntime, Inline=FastReturn]
215 void didCreateIsolatedContext([Keep] LocalFrame*, ScriptState*, SecurityOrig in*); 215 void didCreateIsolatedContext([Keep] LocalFrame*, ScriptState*, SecurityOrig in*);
216 216
217 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 217 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
218 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId); 218 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId);
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 void layerTreeDidChange(LocalFrame*); 445 void layerTreeDidChange(LocalFrame*);
446 [Timeline, Inline=FastReturn] 446 [Timeline, Inline=FastReturn]
447 void didUpdateLayerTree(LocalFrame*); 447 void didUpdateLayerTree(LocalFrame*);
448 448
449 [DOM, Inline=FastReturn] 449 [DOM, Inline=FastReturn]
450 void pseudoElementCreated([Keep] PseudoElement*); 450 void pseudoElementCreated([Keep] PseudoElement*);
451 451
452 [DOM, Inline=FastReturn] 452 [DOM, Inline=FastReturn]
453 void pseudoElementDestroyed([Keep] PseudoElement*); 453 void pseudoElementDestroyed([Keep] PseudoElement*);
454 454
455 [DOMDebugger, Inline=FastReturn]
456 void willExecuteCustomElementCallback([Keep] Element*);
457
458 [Debugger, Inline=FastReturn] 455 [Debugger, Inline=FastReturn]
459 int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& oper ationName); 456 int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& oper ationName);
460 457
461 [Debugger, Inline=FastReturn] 458 [Debugger, Inline=FastReturn]
462 int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& oper ationName, int prevOperationId); 459 int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& oper ationName, int prevOperationId);
463 460
464 [Debugger, Inline=FastReturn] 461 [Debugger, Inline=FastReturn]
465 void traceAsyncOperationCompleted([Keep] ExecutionContext*, int operationId) ; 462 void traceAsyncOperationCompleted([Keep] ExecutionContext*, int operationId) ;
466 463
467 [Debugger, Inline=FastReturn] 464 [Debugger, Inline=FastReturn]
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 interface InspectorCanvasInstrumentation { 526 interface InspectorCanvasInstrumentation {
530 527
531 #include "bindings/core/v8/ScriptValue.h" 528 #include "bindings/core/v8/ScriptValue.h"
532 529
533 [Canvas] 530 [Canvas]
534 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 531 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
535 532
536 [Canvas] 533 [Canvas]
537 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 534 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
538 } 535 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | Source/core/inspector/InspectorInstrumentationCustomInl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698