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

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: 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 df2d854e6e888189cb2117579f36f19cdb793675..a89affd6ed6c492eb1d49c1923eb674b9521d716 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -41,9 +41,9 @@ ExtensionFunction::ResponseAction GetInputMethodConfigFunction::Run() {
output->SetBoolean("isVoiceInputEnabled",
!base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kDisableVoiceInput));
- output->SetBoolean("isNewMDInputViewEnabled",
+ output->SetBoolean("isNewMDInputViewDisabled",
Shu Chen 2015/03/23 02:16:23 please don't change this.
FengYuan 2015/03/23 05:24:49 Done.
base::CommandLine::ForCurrentProcess()->HasSwitch(
- chromeos::switches::kEnableNewMDInputView));
+ chromeos::switches::kDisableNewMDInputView));
return RespondNow(OneArgument(output));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698