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

Unified Diff: ash/root_window_controller.cc

Issue 2007863004: Fix the double-tap to click gesture in touch accessibility mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO for second display Created 4 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
« no previous file with comments | « ash/root_window_controller.h ('k') | chrome/browser/accessibility/accessibility_extension_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/root_window_controller.cc
diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc
index 9bc5d4cea68b167ad9c42f585e223b4fd8dbbba0..4f3349afcb78c329a5d3bae8be0aa545b4109126 100644
--- a/ash/root_window_controller.cc
+++ b/ash/root_window_controller.cc
@@ -681,6 +681,14 @@ bool RootWindowController::IsVirtualKeyboardWindow(aura::Window* window) {
return parent ? parent->Contains(window) : false;
}
+void RootWindowController::SetTouchAccessibilityAnchorPoint(
+ const gfx::Point& anchor_point) {
+#if defined(OS_CHROMEOS)
+ if (touch_exploration_manager_)
+ touch_exploration_manager_->SetTouchAccessibilityAnchorPoint(anchor_point);
+#endif // defined(OS_CHROMEOS)
+}
+
////////////////////////////////////////////////////////////////////////////////
// RootWindowController, private:
« no previous file with comments | « ash/root_window_controller.h ('k') | chrome/browser/accessibility/accessibility_extension_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698