diff options
author | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 23:01:41 +0000 |
---|---|---|
committer | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 23:01:41 +0000 |
commit | ce3d76856f28537ffda058e6babc8f4f46d85eac (patch) | |
tree | d686327c2f589faea3e1f7b3398eae9d9c4e67bb /ash/shell/shell_delegate_impl.cc | |
parent | 85ef262960ec28dc6c8ae04f55cfa72a0bef8f61 (diff) | |
download | chromium_src-ce3d76856f28537ffda058e6babc8f4f46d85eac.zip chromium_src-ce3d76856f28537ffda058e6babc8f4f46d85eac.tar.gz chromium_src-ce3d76856f28537ffda058e6babc8f4f46d85eac.tar.bz2 |
Add ash shortcut for toggling spoken feedback.
This makes it possible to toggle anywhere, not just on the login screen.
It also fixes a bug where even on the login screen, accessibility couldn't
be toggled when the status tray had focus.
BUG=120953,chromium-os:23566
TEST=Press Ctrl+Alt+Z in login screen and when logged in.
Review URL: http://codereview.chromium.org/10339005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell/shell_delegate_impl.cc')
-rw-r--r-- | ash/shell/shell_delegate_impl.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/shell/shell_delegate_impl.cc b/ash/shell/shell_delegate_impl.cc index c2bfdc0..9cafd1e 100644 --- a/ash/shell/shell_delegate_impl.cc +++ b/ash/shell/shell_delegate_impl.cc @@ -75,6 +75,9 @@ void ShellDelegateImpl::OpenCrosh() { void ShellDelegateImpl::OpenMobileSetup() { } +void ShellDelegateImpl::ToggleSpokenFeedback() { +} + ash::AppListViewDelegate* ShellDelegateImpl::CreateAppListViewDelegate() { return ash::shell::CreateAppListViewDelegate(); } |