| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |