Chromium Code Reviews| 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 |
| } |