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

Unified Diff: content/browser/renderer_host/render_widget_host_view_mac.h

Issue 2902303002: phase based wheel scroll latching for mac (Closed)
Patch Set: in -> after Created 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_widget_host_view_mac.h
diff --git a/content/browser/renderer_host/render_widget_host_view_mac.h b/content/browser/renderer_host/render_widget_host_view_mac.h
index ac198a442454506a9caf84b3b7a029576ba257cf..4362092c21ff0f6206b7b73ebc433787c766575b 100644
--- a/content/browser/renderer_host/render_widget_host_view_mac.h
+++ b/content/browser/renderer_host/render_widget_host_view_mac.h
@@ -487,6 +487,16 @@ class CONTENT_EXPORT RenderWidgetHostViewMac
// Get the focused view that should be used for retrieving the text selection.
RenderWidgetHostViewBase* GetFocusedViewForTextSelection();
+ bool WheelScrollLatchingEnabled() { return wheel_scroll_latching_enabled_; }
tdresser 2017/05/25 15:18:36 Is this needed? It appears redundant with https://
sahel 2017/05/25 16:00:04 Done.
+
+ base::OneShotTimer mouse_wheel_end_dispatch_timer_;
tdresser 2017/05/25 15:18:36 Make private.
sahel 2017/05/25 16:00:04 This is Stopped in RenderWidgetHostViewCocoa, shou
tdresser 2017/05/25 19:34:48 Yup. The fact that this is implemented via a timer
+
+ void SendSyntheticWheelEventWithPhaseEnded(
+ blink::WebMouseWheelEvent wheel_event,
+ bool should_route_event);
tdresser 2017/05/25 15:18:36 Can this be private?
sahel 2017/05/25 16:00:04 This is called in RenderWidgetHostViewCocoa, canno
tdresser 2017/05/25 19:34:48 It is? Isn't it only called in RenderWidgetHostVie
sahel 2017/05/26 18:03:25 Done.
+ void StartMouseWheelEndDispatchTimer(blink::WebMouseWheelEvent wheel_event,
+ bool should_route_event);
tdresser 2017/05/25 15:18:36 Can this be private?
sahel 2017/05/25 16:00:04 This is called in RenderWidgetHostViewCocoa, canno
tdresser 2017/05/25 19:34:47 Acknowledged.
+
// Returns the RenderWidgetHostDelegate corresponding to the currently focused
// RenderWidgetHost. It is different from |render_widget_host_->delegate()|
// when there are focused inner WebContentses on the page. Also, this method

Powered by Google App Engine
This is Rietveld 408576698