summaryrefslogtreecommitdiffstats
path: root/ash/root_window_controller.cc
diff options
context:
space:
mode:
authormfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-13 21:43:49 +0000
committermfomitchev@chromium.org <mfomitchev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-13 21:43:49 +0000
commit5ed2f818e52dca5319c37859004ed17a7c3caed2 (patch)
treefae54bc7758243ffe051576dc77a757cd722ce66 /ash/root_window_controller.cc
parent72af5c558d6d5b28285f95a9d5a38c76a8ba73d6 (diff)
downloadchromium_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.cc4
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