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

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: Async call stacks are off by default, added Debugger.enableAsyncCallStacks protocol command Created 7 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 didFireWebGLWarning(Element*); 140 void didFireWebGLWarning(Element*);
141 141
142 [DOMDebugger, Inline=FastReturn] 142 [DOMDebugger, Inline=FastReturn]
143 void didFireWebGLErrorOrWarning(Element*, const String& message); 143 void didFireWebGLErrorOrWarning(Element*, const String& message);
144 144
145 [Timeline, Inline=FastReturn] 145 [Timeline, Inline=FastReturn]
146 void didScheduleResourceRequest([Keep] Document*, const String& url); 146 void didScheduleResourceRequest([Keep] Document*, const String& url);
147 147
148 [DOMDebugger, Timeline, Inline=FastReturn] 148 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
149 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot); 149 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot);
150 150
151 [DOMDebugger, Timeline, Inline=FastReturn] 151 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
152 void didRemoveTimer([Keep] ExecutionContext*, int timerId); 152 void didRemoveTimer([Keep] ExecutionContext*, int timerId);
153 153
154 [Timeline, Inline=FastReturn] 154 [Timeline, Inline=FastReturn]
155 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst String& scriptName, int scriptLine); 155 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst String& scriptName, int scriptLine);
156 156
157 [Timeline, Inline=FastReturn] 157 [Timeline, Inline=FastReturn]
158 void didCallFunction(const InspectorInstrumentationCookie&); 158 void didCallFunction(const InspectorInstrumentationCookie&);
159 159
160 [Timeline, Inline=FastReturn] 160 [Timeline, Inline=FastReturn]
161 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*); 161 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*);
(...skipping 24 matching lines...) Expand all
186 186
187 [Timeline, Inline=FastReturn] 187 [Timeline, Inline=FastReturn]
188 void didEvaluateScript(const InspectorInstrumentationCookie&); 188 void didEvaluateScript(const InspectorInstrumentationCookie&);
189 189
190 [Page, Inline=FastReturn] 190 [Page, Inline=FastReturn]
191 void scriptsEnabled(Page*, bool isEnabled); 191 void scriptsEnabled(Page*, bool isEnabled);
192 192
193 [PageRuntime, Inline=FastReturn] 193 [PageRuntime, Inline=FastReturn]
194 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*); 194 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*);
195 195
196 [DOMDebugger, Timeline, Inline=FastReturn] 196 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
197 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId); 197 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId);
198 198
199 [Debugger, Timeline, Inline=FastReturn] 199 [Debugger, Timeline, Inline=FastReturn]
200 void didFireTimer(const InspectorInstrumentationCookie&); 200 void didFireTimer(const InspectorInstrumentationCookie&);
201 201
202 [Timeline, Inline=FastReturn] 202 [Timeline, Inline=FastReturn]
203 void didInvalidateLayout([Keep] Frame*); 203 void didInvalidateLayout([Keep] Frame*);
204 204
205 [Timeline, Inline=FastReturn] 205 [Timeline, Inline=FastReturn]
206 InspectorInstrumentationCookie willLayout([Keep] Frame*); 206 InspectorInstrumentationCookie willLayout([Keep] Frame*);
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 371
372 [Inline=Forward] 372 [Inline=Forward]
373 void willDestroyResource(Resource* cachedResource); 373 void willDestroyResource(Resource* cachedResource);
374 374
375 [Timeline, Inline=FastReturn] 375 [Timeline, Inline=FastReturn]
376 InspectorInstrumentationCookie willWriteHTML([Keep] Document*, unsigned star tLine); 376 InspectorInstrumentationCookie willWriteHTML([Keep] Document*, unsigned star tLine);
377 377
378 [Timeline, Inline=FastReturn] 378 [Timeline, Inline=FastReturn]
379 void didWriteHTML(const InspectorInstrumentationCookie&, unsigned endLine); 379 void didWriteHTML(const InspectorInstrumentationCookie&, unsigned endLine);
380 380
381 [DOMDebugger, Timeline] 381 [DOMDebugger, Debugger, Timeline]
382 void didRequestAnimationFrame([Keep] Document*, int callbackId); 382 void didRequestAnimationFrame([Keep] Document*, int callbackId);
383 383
384 [DOMDebugger, Timeline] 384 [DOMDebugger, Debugger, Timeline]
385 void didCancelAnimationFrame([Keep] Document*, int callbackId); 385 void didCancelAnimationFrame([Keep] Document*, int callbackId);
386 386
387 [DOMDebugger, Timeline] 387 [DOMDebugger, Debugger, Timeline]
388 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId); 388 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
389 389
390 [Timeline, Inline=FastReturn] 390 [Timeline, Debugger, Inline=FastReturn]
391 void didFireAnimationFrame(const InspectorInstrumentationCookie&); 391 void didFireAnimationFrame(const InspectorInstrumentationCookie&);
392 392
393 [DOMStorage, Inline=FastReturn] 393 [DOMStorage, Inline=FastReturn]
394 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin); 394 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin);
395 395
396 [Worker] 396 [Worker]
397 void didStartWorkerGlobalScope(ExecutionContext*, WorkerGlobalScopeProxy* pr oxy, const KURL& url); 397 void didStartWorkerGlobalScope(ExecutionContext*, WorkerGlobalScopeProxy* pr oxy, const KURL& url);
398 398
399 [WorkerRuntime] 399 [WorkerRuntime]
400 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode); 400 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode);
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 interface InspectorCanvasInstrumentation { 523 interface InspectorCanvasInstrumentation {
524 524
525 #include "bindings/v8/ScriptObject.h" 525 #include "bindings/v8/ScriptObject.h"
526 526
527 [Canvas] 527 [Canvas]
528 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 528 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
529 529
530 [Canvas] 530 [Canvas]
531 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 531 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
532 } 532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698