Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1624)

Unified Diff: chrome/browser/chromeos/extensions/input_method_api.cc

Issue 929753002: Turn off physical keyboard autocorrect feature by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chromeos/chromeos_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/input_method_api.cc
diff --git a/chrome/browser/chromeos/extensions/input_method_api.cc b/chrome/browser/chromeos/extensions/input_method_api.cc
index a6d87af32be3c0f0491e89488360d2525eb29e25..d808a16549e335fd5819419263874ac00b9d3d5e 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -34,8 +34,8 @@ ExtensionFunction::ResponseAction GetInputMethodConfigFunction::Run() {
base::DictionaryValue* output = new base::DictionaryValue();
output->SetBoolean(
"isPhysicalKeyboardAutocorrectEnabled",
- !base::CommandLine::ForCurrentProcess()->HasSwitch(
- chromeos::switches::kDisablePhysicalKeyboardAutocorrect));
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ chromeos::switches::kEnablePhysicalKeyboardAutocorrect));
output->SetBoolean("isVoiceInputEnabled",
!base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kDisableVoiceInput));
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chromeos/chromeos_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698