summaryrefslogtreecommitdiffstats
path: root/ash/shell.h
diff options
context:
space:
mode:
authortengs@chromium.org <tengs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-10 19:49:20 +0000
committertengs@chromium.org <tengs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-10 19:49:20 +0000
commit55398d2c62c998c1665451cd1046d41f1238b0b2 (patch)
tree9b48bc0b9e6643aebfb8739912fcef632482e0ca /ash/shell.h
parentd70f885988158ff8ff5614943fab8a669174027e (diff)
downloadchromium_src-55398d2c62c998c1665451cd1046d41f1238b0b2.zip
chromium_src-55398d2c62c998c1665451cd1046d41f1238b0b2.tar.gz
chromium_src-55398d2c62c998c1665451cd1046d41f1238b0b2.tar.bz2
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
Diffstat (limited to 'ash/shell.h')
-rw-r--r--ash/shell.h7
1 files changed, 7 insertions, 0 deletions
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<HighContrastController> high_contrast_controller_;
scoped_ptr<MagnificationController> magnification_controller_;
scoped_ptr<PartialMagnificationController> partial_magnification_controller_;
+ scoped_ptr<AutoclickController> autoclick_controller_;
scoped_ptr<aura::client::FocusClient> focus_client_;
scoped_ptr<aura::client::UserActionClient> user_action_client_;
aura::client::ActivationClient* activation_client_;