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

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

Issue 1433623002: Devtools Animations: Don't wait for empty transitions to start (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 1 month 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
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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
421
422 [Animation, Inline=FastReturn]
420 void didStartAnimation(Document*, Animation* player); 423 void didStartAnimation(Document*, Animation* player);
421 } 424 }
422 425
423 interface InspectorConsoleInstrumentation { 426 interface InspectorConsoleInstrumentation {
424 427
425 #include "core/inspector/ScriptArguments.h" 428 #include "core/inspector/ScriptArguments.h"
426 429
427 class ConsoleMessage; 430 class ConsoleMessage;
428 431
429 [Console] 432 [Console]
(...skipping 12 matching lines...) Expand all
442 interface InspectorOverrides { 445 interface InspectorOverrides {
443 [CSS, Inline=FastReturn] 446 [CSS, Inline=FastReturn]
444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
445 448
446 [Worker, Inline=FastReturn] 449 [Worker, Inline=FastReturn]
447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
448 451
449 [Resource, Inline=FastReturn] 452 [Resource, Inline=FastReturn]
450 bool shouldForceCORSPreflight(Document*); 453 bool shouldForceCORSPreflight(Document*);
451 } 454 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698