| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 [AsyncCallTracker, Inline=FastReturn] | 413 [AsyncCallTracker, Inline=FastReturn] |
| 414 InspectorInstrumentationCookie traceAsyncOperationCompletedCallbackStarting(
[Keep] ExecutionContext*, int operationId); | 414 InspectorInstrumentationCookie traceAsyncOperationCompletedCallbackStarting(
[Keep] ExecutionContext*, int operationId); |
| 415 | 415 |
| 416 [AsyncCallTracker, Inline=FastReturn] | 416 [AsyncCallTracker, Inline=FastReturn] |
| 417 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); | 417 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); |
| 418 | 418 |
| 419 [AsyncCallTracker, Inline=FastReturn] | 419 [AsyncCallTracker, Inline=FastReturn] |
| 420 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); | 420 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); |
| 421 | 421 |
| 422 [Animation, Inline=FastReturn] | 422 [Animation, Inline=FastReturn] |
| 423 void didCreateAnimationPlayer(Document*, AnimationPlayer* player); | 423 void didCreateAnimation(Document*, Animation* player); |
| 424 | 424 |
| 425 [Animation, Inline=FastReturn] | 425 [Animation, Inline=FastReturn] |
| 426 void didCancelAnimationPlayer(Document*, AnimationPlayer* player); | 426 void didCancelAnimation(Document*, Animation* player); |
| 427 } | 427 } |
| 428 | 428 |
| 429 interface InspectorConsoleInstrumentation { | 429 interface InspectorConsoleInstrumentation { |
| 430 | 430 |
| 431 #include "core/inspector/ScriptArguments.h" | 431 #include "core/inspector/ScriptArguments.h" |
| 432 | 432 |
| 433 class ConsoleMessage; | 433 class ConsoleMessage; |
| 434 | 434 |
| 435 [Console, Debugger] | 435 [Console, Debugger] |
| 436 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); | 436 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 448 interface InspectorOverrides { | 448 interface InspectorOverrides { |
| 449 [CSS, Inline=FastReturn] | 449 [CSS, Inline=FastReturn] |
| 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 451 | 451 |
| 452 [Worker, Inline=FastReturn] | 452 [Worker, Inline=FastReturn] |
| 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 454 | 454 |
| 455 [Resource, Inline=FastReturn] | 455 [Resource, Inline=FastReturn] |
| 456 bool shouldForceCORSPreflight(Document*); | 456 bool shouldForceCORSPreflight(Document*); |
| 457 } | 457 } |
| OLD | NEW |