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

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

Issue 131823003: DevTools: Implement async call stacks for Promises. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 11 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) 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 [Debugger, Inline=FastReturn] 196 [Debugger, Inline=FastReturn]
197 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*) ; 197 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*) ;
198 198
199 [Debugger, Inline=FastReturn] 199 [Debugger, Inline=FastReturn]
200 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*) ; 200 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*) ;
201 201
202 [Debugger, Inline=FastReturn] 202 [Debugger, Inline=FastReturn]
203 void didDeliverMutationRecords(ExecutionContext*); 203 void didDeliverMutationRecords(ExecutionContext*);
204 204
205 [Debugger, Inline=FastReturn]
206 void didPostPromiseTask([Keep] ExecutionContext*, ExecutionContextTask*, boo l isResolved);
207
208 [Debugger, Inline=FastReturn]
209 InspectorInstrumentationCookie willPerformPromiseTask([Keep] ExecutionContex t*, ExecutionContextTask*);
210
211 [Debugger, Inline=FastReturn]
212 void didPerformPromiseTask(const InspectorInstrumentationCookie&);
213
205 [Timeline, Inline=FastReturn] 214 [Timeline, Inline=FastReturn]
206 InspectorInstrumentationCookie willEvaluateScript([Keep] Frame*, const Strin g& url, int lineNumber); 215 InspectorInstrumentationCookie willEvaluateScript([Keep] Frame*, const Strin g& url, int lineNumber);
207 216
208 [Timeline, Inline=FastReturn] 217 [Timeline, Inline=FastReturn]
209 void didEvaluateScript(const InspectorInstrumentationCookie&); 218 void didEvaluateScript(const InspectorInstrumentationCookie&);
210 219
211 [Page, Inline=FastReturn] 220 [Page, Inline=FastReturn]
212 void scriptsEnabled(Page*, bool isEnabled); 221 void scriptsEnabled(Page*, bool isEnabled);
213 222
214 [PageRuntime, Inline=FastReturn] 223 [PageRuntime, Inline=FastReturn]
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 interface InspectorCanvasInstrumentation { 549 interface InspectorCanvasInstrumentation {
541 550
542 #include "bindings/v8/ScriptObject.h" 551 #include "bindings/v8/ScriptObject.h"
543 552
544 [Canvas] 553 [Canvas]
545 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 554 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
546 555
547 [Canvas] 556 [Canvas]
548 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 557 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
549 } 558 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698