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

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

Issue 863093006: Renames enable-new-qp-input-view to enable-new-md-input-view. Because QP is a internal code name, w… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 15954ca9ca966e4ba32789c7282a6bed904dedc1..3460536ec99660d1cbeea8c26470a0068e0a56c9 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -36,9 +36,9 @@ ExtensionFunction::ResponseAction GetInputMethodConfigFunction::Run() {
"isPhysicalKeyboardAutocorrectEnabled",
base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kEnablePhysicalKeyboardAutocorrect));
- output->SetBoolean("isNewQPInputViewEnabled",
+ output->SetBoolean("isNewMDInputViewEnabled",
base::CommandLine::ForCurrentProcess()->HasSwitch(
- chromeos::switches::kEnableNewQPInputView));
+ chromeos::switches::kEnableNewMDInputView));
return RespondNow(OneArgument(output));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698