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

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

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 years, 7 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorAnimationAgent.cpp ('k') | Source/core/inspector/InspectorTraceEvents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698