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

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

Issue 1043903003: rAF: Introduce FrameRequestCallbackCollection for managing rAF callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 8 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 [Page, Inline=FastReturn] 332 [Page, Inline=FastReturn]
333 InspectorInstrumentationCookie willRunJavaScriptDialog(LocalFrame*, const St ring& message); 333 InspectorInstrumentationCookie willRunJavaScriptDialog(LocalFrame*, const St ring& message);
334 334
335 [Page, Inline=FastReturn] 335 [Page, Inline=FastReturn]
336 void didRunJavaScriptDialog(const InspectorInstrumentationCookie&); 336 void didRunJavaScriptDialog(const InspectorInstrumentationCookie&);
337 337
338 [Inline=Forward] 338 [Inline=Forward]
339 void willDestroyResource(Resource* cachedResource); 339 void willDestroyResource(Resource* cachedResource);
340 340
341 [AsyncCallTracker, DOMDebugger] 341 [AsyncCallTracker, DOMDebugger]
342 void didRequestAnimationFrame([Keep] Document*, int callbackId); 342 void didRequestAnimationFrame([Keep] ExecutionContext*, int callbackId);
343 343
344 [AsyncCallTracker, DOMDebugger] 344 [AsyncCallTracker, DOMDebugger]
345 void didCancelAnimationFrame([Keep] Document*, int callbackId); 345 void didCancelAnimationFrame([Keep] ExecutionContext*, int callbackId);
346 346
347 [AsyncCallTracker, DOMDebugger] 347 [AsyncCallTracker, DOMDebugger]
348 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId); 348 InspectorInstrumentationCookie willFireAnimationFrame([Keep] ExecutionContex t*, int callbackId);
349 349
350 [AsyncCallTracker, Inline=FastReturn] 350 [AsyncCallTracker, Inline=FastReturn]
351 void didFireAnimationFrame(const InspectorInstrumentationCookie&); 351 void didFireAnimationFrame(const InspectorInstrumentationCookie&);
352 352
353 [Worker] 353 [Worker]
354 void didStartWorker(ExecutionContext*, WorkerInspectorProxy* proxy, const KU RL& url); 354 void didStartWorker(ExecutionContext*, WorkerInspectorProxy* proxy, const KU RL& url);
355 355
356 [Worker, PageConsole] 356 [Worker, PageConsole]
357 void workerTerminated(ExecutionContext*, WorkerInspectorProxy* proxy); 357 void workerTerminated(ExecutionContext*, WorkerInspectorProxy* proxy);
358 358
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 interface InspectorCanvasInstrumentation { 463 interface InspectorCanvasInstrumentation {
464 464
465 #include "bindings/core/v8/ScriptValue.h" 465 #include "bindings/core/v8/ScriptValue.h"
466 466
467 [Canvas] 467 [Canvas]
468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
469 469
470 [Canvas] 470 [Canvas]
471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
472 } 472 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorTraceEvents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698