From 55398d2c62c998c1665451cd1046d41f1238b0b2 Mon Sep 17 00:00:00 2001 From: "tengs@chromium.org" Date: Thu, 10 Oct 2013 19:49:20 +0000 Subject: Add autoclick accessibility feature to ash. BUG=272401 TEST=added unit tests Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=226895 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=227760 Review URL: https://codereview.chromium.org/24191002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227976 0039d316-1c4b-4281-b951-d872f2087c98 --- ash/shell.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ash/shell.h') diff --git a/ash/shell.h b/ash/shell.h index a72826c..d665add 100644 --- a/ash/shell.h +++ b/ash/shell.h @@ -74,6 +74,7 @@ namespace ash { class AcceleratorController; class AshNativeCursorManager; +class AutoclickController; class CapsLockDelegate; class DesktopBackgroundController; class DisplayController; @@ -369,6 +370,11 @@ class ASH_EXPORT Shell PartialMagnificationController* partial_magnification_controller() { return partial_magnification_controller_.get(); } + + AutoclickController* autoclick_controller() { + return autoclick_controller_.get(); + } + aura::client::ActivationClient* activation_client() { return activation_client_; } @@ -590,6 +596,7 @@ class ASH_EXPORT Shell scoped_ptr high_contrast_controller_; scoped_ptr magnification_controller_; scoped_ptr partial_magnification_controller_; + scoped_ptr autoclick_controller_; scoped_ptr focus_client_; scoped_ptr user_action_client_; aura::client::ActivationClient* activation_client_; -- cgit v1.1