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

Unified Diff: blimp/client/core/input/blimp_input_handler_wrapper.cc

Issue 2341873002: Handle touchpad flings with passive event listeners on compositor thread. (Closed)
Patch Set: Try to fix funky windows build failure Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: blimp/client/core/input/blimp_input_handler_wrapper.cc
diff --git a/blimp/client/core/input/blimp_input_handler_wrapper.cc b/blimp/client/core/input/blimp_input_handler_wrapper.cc
index 8ed17f9b29b72282a3601d98206f445c20f57112..4405980c7d2edfeb0b9b3070c43f7485c6515fcb 100644
--- a/blimp/client/core/input/blimp_input_handler_wrapper.cc
+++ b/blimp/client/core/input/blimp_input_handler_wrapper.cc
@@ -93,6 +93,15 @@ void BlimpInputHandlerWrapper::TransferActiveWheelFlingAnimation(
<< "Transferring Fling Animations to the engine is not supported";
}
+void BlimpInputHandlerWrapper::DispatchNonBlockingEventToMainThread(
+ ui::ScopedWebInputEvent event,
+ const ui::LatencyInfo& latency_info) {
+ DCHECK(compositor_thread_checker_.CalledOnValidThread());
+
+ NOTIMPLEMENTED()
+ << "Dispatching Non Blocking Events to the engine is not supported";
+}
+
blink::WebGestureCurve* BlimpInputHandlerWrapper::CreateFlingAnimationCurve(
blink::WebGestureDevice device_source,
const blink::WebFloatPoint& velocity,

Powered by Google App Engine
This is Rietveld 408576698