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

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

Issue 1022143003: Removes flag --enable-new-md-input-view and add a opposite flag: --disable-new-md-input-view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed virtual keyboard browser test broken Created 5 years, 9 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
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 b2c2472d0d3e83e82e96b0d7096cff3a369af4f4..ba9c0f4ebba34a05f9ce1f243559d9b40ccaef0d 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -42,8 +42,8 @@ ExtensionFunction::ResponseAction GetInputMethodConfigFunction::Run() {
!base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kDisableVoiceInput));
output->SetBoolean("isNewMDInputViewEnabled",
- base::CommandLine::ForCurrentProcess()->HasSwitch(
- chromeos::switches::kEnableNewMDInputView));
+ !base::CommandLine::ForCurrentProcess()->HasSwitch(
+ chromeos::switches::kDisableNewMDInputView));
return RespondNow(OneArgument(output));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698