| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 [AsyncCallTracker, Inline=FastReturn] | 410 [AsyncCallTracker, Inline=FastReturn] |
| 411 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); | 411 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); |
| 412 | 412 |
| 413 [AsyncCallTracker, Inline=FastReturn] | 413 [AsyncCallTracker, Inline=FastReturn] |
| 414 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); | 414 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); |
| 415 | 415 |
| 416 [Animation, Inline=FastReturn] | 416 [Animation, Inline=FastReturn] |
| 417 void didCreateAnimation(Document*, unsigned); | 417 void didCreateAnimation(Document*, unsigned); |
| 418 | 418 |
| 419 [Animation, Inline=FastReturn] | 419 [Animation, Inline=FastReturn] |
| 420 void didCancelAnimation(Document*, unsigned); | 420 void animationPlayStateChanged(Document*, Animation*, Animation::AnimationPl
ayState oldPlayState, Animation::AnimationPlayState newPlayState); |
| 421 | |
| 422 [Animation, Inline=FastReturn] | |
| 423 void didStartAnimation(Document*, Animation* player); | |
| 424 } | 421 } |
| 425 | 422 |
| 426 interface InspectorConsoleInstrumentation { | 423 interface InspectorConsoleInstrumentation { |
| 427 | 424 |
| 428 #include "core/inspector/ScriptArguments.h" | 425 #include "core/inspector/ScriptArguments.h" |
| 429 | 426 |
| 430 class ConsoleMessage; | 427 class ConsoleMessage; |
| 431 | 428 |
| 432 [Console] | 429 [Console] |
| 433 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); | 430 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 445 interface InspectorOverrides { | 442 interface InspectorOverrides { |
| 446 [CSS, Inline=FastReturn] | 443 [CSS, Inline=FastReturn] |
| 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 448 | 445 |
| 449 [Worker, Inline=FastReturn] | 446 [Worker, Inline=FastReturn] |
| 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 451 | 448 |
| 452 [Resource, Inline=FastReturn] | 449 [Resource, Inline=FastReturn] |
| 453 bool shouldForceCORSPreflight(Document*); | 450 bool shouldForceCORSPreflight(Document*); |
| 454 } | 451 } |
| OLD | NEW |