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

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: Adding some input event filter logic 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 39945ae65b3208221ee86686db213d7ed9fbd5df..df3355c10c3d048478b6ba77e22271bf24ac3bc3 100644
--- a/content/renderer/scheduler/renderer_scheduler.h
+++ b/content/renderer/scheduler/renderer_scheduler.h
@@ -7,6 +7,7 @@
#include "content/renderer/scheduler/single_thread_idle_task_runner.h"
#include "content/renderer/scheduler/task_queue_manager.h"
+#include "third_party/WebKit/public/web/WebInputEvent.h"
namespace cc {
struct BeginFrameArgs;
@@ -41,7 +42,12 @@ class CONTENT_EXPORT RendererScheduler {
// Tells the scheduler that the system received an input event. Called by the
// compositor (impl) thread.
- virtual void DidReceiveInputEventOnCompositorThread() = 0;
+ virtual void DidReceiveInputEventOnCompositorThread(
+ blink::WebInputEvent::Type type) = 0;
+
+ // Tells the scheduler that the system is displaying an input animation (e.g.
+ // a fling). Called by the compositor (impl) thread.
+ virtual void DidAnimateForInputOnCompositorThread() = 0;
// 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.
« no previous file with comments | « content/renderer/scheduler/null_renderer_scheduler.cc ('k') | content/renderer/scheduler/renderer_scheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698