| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); | 420 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); |
| 421 | 421 |
| 422 [AsyncCallTracker, Inline=FastReturn] | 422 [AsyncCallTracker, Inline=FastReturn] |
| 423 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); | 423 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); |
| 424 | 424 |
| 425 [Animation, Inline=FastReturn] | 425 [Animation, Inline=FastReturn] |
| 426 void didCreateAnimationPlayer(Document*, AnimationPlayer* player); | 426 void didCreateAnimationPlayer(Document*, AnimationPlayer* player); |
| 427 | 427 |
| 428 [Animation, Inline=FastReturn] | 428 [Animation, Inline=FastReturn] |
| 429 void didCancelAnimationPlayer(Document*, AnimationPlayer* player); | 429 void didCancelAnimationPlayer(Document*, AnimationPlayer* player); |
| 430 |
| 431 [Animation] |
| 432 void documentAttachedToFrame([Keep] LocalFrame*); |
| 430 } | 433 } |
| 431 | 434 |
| 432 interface InspectorConsoleInstrumentation { | 435 interface InspectorConsoleInstrumentation { |
| 433 | 436 |
| 434 #include "core/inspector/ScriptArguments.h" | 437 #include "core/inspector/ScriptArguments.h" |
| 435 | 438 |
| 436 class ConsoleMessage; | 439 class ConsoleMessage; |
| 437 | 440 |
| 438 [Console, Debugger] | 441 [Console, Debugger] |
| 439 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); | 442 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 451 interface InspectorOverrides { | 454 interface InspectorOverrides { |
| 452 [CSS, Inline=FastReturn] | 455 [CSS, Inline=FastReturn] |
| 453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 456 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 454 | 457 |
| 455 [Worker, Inline=FastReturn] | 458 [Worker, Inline=FastReturn] |
| 456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 459 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 457 | 460 |
| 458 [Resource, Inline=FastReturn] | 461 [Resource, Inline=FastReturn] |
| 459 bool shouldForceCORSPreflight(Document*); | 462 bool shouldForceCORSPreflight(Document*); |
| 460 } | 463 } |
| OLD | NEW |