diff options
author | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 04:50:23 +0000 |
---|---|---|
committer | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 04:50:23 +0000 |
commit | aef1af4b193560aa51e9aaa858ae41a7e92b5c3a (patch) | |
tree | 996057f591a6168fb9da0512fa9c5fd0b082594a /chromeos/ime | |
parent | 6e536cdf138d65ede0844654966a0c0ed0cfd430 (diff) | |
download | chromium_src-aef1af4b193560aa51e9aaa858ae41a7e92b5c3a.zip chromium_src-aef1af4b193560aa51e9aaa858ae41a7e92b5c3a.tar.gz chromium_src-aef1af4b193560aa51e9aaa858ae41a7e92b5c3a.tar.bz2 |
Do not enable extension IME just after installation.
This CL inverts the meaning of filtered extension IMEs preferences.
With this CL any extension IME won't be enabled just after it's installed.
This is preparation of dropping Extension IME button from language options.
After that, I will introduce better extension IME selection based on user's preferred languages.
BUG=180094
TEST=Manually checked
Review URL: https://chromiumcodereview.appspot.com/14870004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/ime')
-rw-r--r-- | chromeos/ime/input_method_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/ime/input_method_manager.h b/chromeos/ime/input_method_manager.h index ee27664..b141e61 100644 --- a/chromeos/ime/input_method_manager.h +++ b/chromeos/ime/input_method_manager.h @@ -138,8 +138,8 @@ class InputMethodManager { // Returns a list of descriptors for all Input Method Extensions. virtual void GetInputMethodExtensions(InputMethodDescriptors* result) = 0; - // Sets the list of extension IME ids which should not be enabled. - virtual void SetFilteredExtensionImes(std::vector<std::string>* ids) = 0; + // Sets the list of extension IME ids which should be enabled. + virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) = 0; // Gets the descriptor of the input method which is currently selected. virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; |