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

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

Issue 383363002: DevTools: Fix async stacks instrumentation for XHRs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 231
232 [Page, Inline=FastReturn] 232 [Page, Inline=FastReturn]
233 void didResizeMainFrame(Page*); 233 void didResizeMainFrame(Page*);
234 234
235 [Timeline, Inline=FastReturn] 235 [Timeline, Inline=FastReturn]
236 InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep] ExecutionCont ext*, XMLHttpRequest*); 236 InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep] ExecutionCont ext*, XMLHttpRequest*);
237 237
238 [Timeline, Inline=FastReturn] 238 [Timeline, Inline=FastReturn]
239 void didDispatchXHRLoadEvent(const InspectorInstrumentationCookie&); 239 void didDispatchXHRLoadEvent(const InspectorInstrumentationCookie&);
240 240
241 [Debugger, Inline=FastReturn]
242 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*);
243
241 [Timeline, Inline=FastReturn] 244 [Timeline, Inline=FastReturn]
242 void willScrollLayer([Keep] RenderObject*); 245 void willScrollLayer([Keep] RenderObject*);
243 246
244 [Timeline, Inline=FastReturn] 247 [Timeline, Inline=FastReturn]
245 void didScrollLayer(RenderObject*); 248 void didScrollLayer(RenderObject*);
246 249
247 [Timeline, Inline=FastReturn] 250 [Timeline, Inline=FastReturn]
248 void willPaint([Keep] RenderObject*, const GraphicsLayer*); 251 void willPaint([Keep] RenderObject*, const GraphicsLayer*);
249 252
250 [Timeline, Page, LayerTree, Inline=FastReturn] 253 [Timeline, Page, LayerTree, Inline=FastReturn]
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 interface InspectorCanvasInstrumentation { 510 interface InspectorCanvasInstrumentation {
508 511
509 #include "bindings/core/v8/ScriptValue.h" 512 #include "bindings/core/v8/ScriptValue.h"
510 513
511 [Canvas] 514 [Canvas]
512 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 515 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
513 516
514 [Canvas] 517 [Canvas]
515 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 518 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
516 } 519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698