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

Unified Diff: content/renderer/scheduler/renderer_scheduler.h

Issue 692483002: Hook up DidReceiveInputEvent to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Trying to fix diff base Created 6 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/scheduler/renderer_scheduler.h
diff --git a/content/renderer/scheduler/renderer_scheduler.h b/content/renderer/scheduler/renderer_scheduler.h
index 193200919c5ad8c53799a62ce08e2a103ac79545..f10dc2616d3aac8f3370b1516443d55601744fcf 100644
--- a/content/renderer/scheduler/renderer_scheduler.h
+++ b/content/renderer/scheduler/renderer_scheduler.h
@@ -46,6 +46,10 @@ class CONTENT_EXPORT RendererScheduler {
// on any thread.
virtual void DidReceiveInputEvent() = 0;
+ // Tells the scheduler that the system is displaying an animation. E.g. a
+ // fling.
+ virtual void DidAnimate() = 0;
rmcilroy 2014/11/06 00:53:16 Is this called for all animations, or only input r
alex clarke (OOO till 29th) 2014/11/06 19:21:45 Done.
+
// Returns true if there is high priority work pending on the main thread
// and the caller should yield to let the scheduler service that work.
// Must be called from the main thread.

Powered by Google App Engine
This is Rietveld 408576698