diff options
author | mfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 21:43:49 +0000 |
---|---|---|
committer | mfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 21:43:49 +0000 |
commit | 5ed2f818e52dca5319c37859004ed17a7c3caed2 (patch) | |
tree | fae54bc7758243ffe051576dc77a757cd722ce66 /ash/root_window_controller.cc | |
parent | 72af5c558d6d5b28285f95a9d5a38c76a8ba73d6 (diff) | |
download | chromium_src-5ed2f818e52dca5319c37859004ed17a7c3caed2.zip chromium_src-5ed2f818e52dca5319c37859004ed17a7c3caed2.tar.gz chromium_src-5ed2f818e52dca5319c37859004ed17a7c3caed2.tar.bz2 |
Implementation of the Touch Exploration Mode - Part III (enabled by default)
This CL makes Touch Exploration Mode enabled by default. This is dependent on Part I and II:
https://codereview.chromium.org/262483003
https://codereview.chromium.org/261863002
BUG=368828
Review URL: https://codereview.chromium.org/266923003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270216 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/root_window_controller.cc')
-rw-r--r-- | ash/root_window_controller.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc index 2bcec0c..2c0bb5f 100644 --- a/ash/root_window_controller.cc +++ b/ash/root_window_controller.cc @@ -798,8 +798,8 @@ void RootWindowController::Init(RootWindowType root_window_type, } #if defined(OS_CHROMEOS) - if (CommandLine::ForCurrentProcess()->HasSwitch( - switches::kAshEnableTouchExplorationMode)) { + if (!CommandLine::ForCurrentProcess()->HasSwitch( + switches::kAshDisableTouchExplorationMode)) { cros_accessibility_observer_.reset(new CrosAccessibilityObserver(this)); } #endif |