summaryrefslogtreecommitdiffstats
path: root/ash/root_window_controller.cc
diff options
context:
space:
mode:
authordmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-27 11:20:36 +0000
committerdmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-27 11:20:36 +0000
commit13ba44ab40273271d94704b910544e06aa933a2f (patch)
treeb94feefa3a92139da87b1d0ac47a360b54178757 /ash/root_window_controller.cc
parent92bfb0bf223c579f44433859d895213be455c65f (diff)
downloadchromium_src-13ba44ab40273271d94704b910544e06aa933a2f.zip
chromium_src-13ba44ab40273271d94704b910544e06aa933a2f.tar.gz
chromium_src-13ba44ab40273271d94704b910544e06aa933a2f.tar.bz2
Disable accessible touch exploration by default.
Touch exploration was too buggy in M37, we don't want to launch it. The plan is to land this change and merge to M37, then revert it to aim for a launch of touch exploration in M38. BUG=396193 Review URL: https://codereview.chromium.org/414493004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285832 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 0e07dbe..096297e 100644
--- a/ash/root_window_controller.cc
+++ b/ash/root_window_controller.cc
@@ -757,8 +757,8 @@ void RootWindowController::Init(RootWindowType root_window_type,
}
#if defined(OS_CHROMEOS)
- if (!CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kAshDisableTouchExplorationMode)) {
+ if (CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kAshEnableTouchExplorationMode)) {
touch_exploration_manager_.reset(new AshTouchExplorationManager(this));
}
#endif