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

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

Issue 74063002: DevTools: Support asynchronous call stacks on backend. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed test flakiness Created 7 years 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
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 [DOMDebugger, Inline=FastReturn] 142 [DOMDebugger, Inline=FastReturn]
143 void didFireWebGLWarning(Element*); 143 void didFireWebGLWarning(Element*);
144 144
145 [DOMDebugger, Inline=FastReturn] 145 [DOMDebugger, Inline=FastReturn]
146 void didFireWebGLErrorOrWarning(Element*, const String& message); 146 void didFireWebGLErrorOrWarning(Element*, const String& message);
147 147
148 [Timeline, Inline=FastReturn] 148 [Timeline, Inline=FastReturn]
149 void didScheduleResourceRequest([Keep] Document*, const String& url); 149 void didScheduleResourceRequest([Keep] Document*, const String& url);
150 150
151 [DOMDebugger, Timeline, Inline=FastReturn] 151 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
152 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot); 152 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot);
153 153
154 [DOMDebugger, Timeline, Inline=FastReturn] 154 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
155 void didRemoveTimer([Keep] ExecutionContext*, int timerId); 155 void didRemoveTimer([Keep] ExecutionContext*, int timerId);
156 156
157 [Timeline, Inline=FastReturn] 157 [Timeline, Inline=FastReturn]
158 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst String& scriptName, int scriptLine); 158 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst String& scriptName, int scriptLine);
159 159
160 [Timeline, Inline=FastReturn] 160 [Timeline, Inline=FastReturn]
161 void didCallFunction(const InspectorInstrumentationCookie&); 161 void didCallFunction(const InspectorInstrumentationCookie&);
162 162
163 [Timeline, Inline=FastReturn] 163 [Timeline, Inline=FastReturn]
164 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*); 164 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*);
(...skipping 24 matching lines...) Expand all
189 189
190 [Timeline, Inline=FastReturn] 190 [Timeline, Inline=FastReturn]
191 void didEvaluateScript(const InspectorInstrumentationCookie&); 191 void didEvaluateScript(const InspectorInstrumentationCookie&);
192 192
193 [Page, Inline=FastReturn] 193 [Page, Inline=FastReturn]
194 void scriptsEnabled(Page*, bool isEnabled); 194 void scriptsEnabled(Page*, bool isEnabled);
195 195
196 [PageRuntime, Inline=FastReturn] 196 [PageRuntime, Inline=FastReturn]
197 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*); 197 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*);
198 198
199 [DOMDebugger, Timeline, Inline=FastReturn] 199 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
200 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId); 200 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId);
201 201
202 [Debugger, Timeline, Inline=FastReturn] 202 [Debugger, Timeline, Inline=FastReturn]
203 void didFireTimer(const InspectorInstrumentationCookie&); 203 void didFireTimer(const InspectorInstrumentationCookie&);
204 204
205 [Timeline, Inline=FastReturn] 205 [Timeline, Inline=FastReturn]
206 void didInvalidateLayout([Keep] Frame*); 206 void didInvalidateLayout([Keep] Frame*);
207 207
208 [Timeline, Inline=FastReturn] 208 [Timeline, Inline=FastReturn]
209 InspectorInstrumentationCookie willLayout([Keep] Frame*); 209 InspectorInstrumentationCookie willLayout([Keep] Frame*);
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 374
375 [Inline=Forward] 375 [Inline=Forward]
376 void willDestroyResource(Resource* cachedResource); 376 void willDestroyResource(Resource* cachedResource);
377 377
378 [Timeline, Inline=FastReturn] 378 [Timeline, Inline=FastReturn]
379 InspectorInstrumentationCookie willWriteHTML([Keep] Document*, unsigned star tLine); 379 InspectorInstrumentationCookie willWriteHTML([Keep] Document*, unsigned star tLine);
380 380
381 [Timeline, Inline=FastReturn] 381 [Timeline, Inline=FastReturn]
382 void didWriteHTML(const InspectorInstrumentationCookie&, unsigned endLine); 382 void didWriteHTML(const InspectorInstrumentationCookie&, unsigned endLine);
383 383
384 [DOMDebugger, Timeline] 384 [DOMDebugger, Debugger, Timeline]
385 void didRequestAnimationFrame([Keep] Document*, int callbackId); 385 void didRequestAnimationFrame([Keep] Document*, int callbackId);
386 386
387 [DOMDebugger, Timeline] 387 [DOMDebugger, Debugger, Timeline]
388 void didCancelAnimationFrame([Keep] Document*, int callbackId); 388 void didCancelAnimationFrame([Keep] Document*, int callbackId);
389 389
390 [DOMDebugger, Timeline] 390 [DOMDebugger, Debugger, Timeline]
391 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId); 391 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
392 392
393 [Timeline, Inline=FastReturn] 393 [Timeline, Debugger, Inline=FastReturn]
394 void didFireAnimationFrame(const InspectorInstrumentationCookie&); 394 void didFireAnimationFrame(const InspectorInstrumentationCookie&);
395 395
396 [DOMStorage, Inline=FastReturn] 396 [DOMStorage, Inline=FastReturn]
397 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin); 397 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin);
398 398
399 [Worker] 399 [Worker]
400 void didStartWorkerGlobalScope(ExecutionContext*, WorkerGlobalScopeProxy* pr oxy, const KURL& url); 400 void didStartWorkerGlobalScope(ExecutionContext*, WorkerGlobalScopeProxy* pr oxy, const KURL& url);
401 401
402 [WorkerRuntime] 402 [WorkerRuntime]
403 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode); 403 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode);
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 interface InspectorCanvasInstrumentation { 526 interface InspectorCanvasInstrumentation {
527 527
528 #include "bindings/v8/ScriptObject.h" 528 #include "bindings/v8/ScriptObject.h"
529 529
530 [Canvas] 530 [Canvas]
531 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 531 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
532 532
533 [Canvas] 533 [Canvas]
534 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 534 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
535 } 535 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698