Chromium Code Reviews| Index: chrome/browser/chromeos/input_method/input_method_manager_impl.h |
| diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl.h b/chrome/browser/chromeos/input_method/input_method_manager_impl.h |
| index d86f6aeaba025d72776c4b36f74d851f82dd8472..2d2fdc1b4e124b067976aa4bd266409ed8b3f9a2 100644 |
| --- a/chrome/browser/chromeos/input_method/input_method_manager_impl.h |
| +++ b/chrome/browser/chromeos/input_method/input_method_manager_impl.h |
| @@ -58,6 +58,9 @@ class InputMethodManagerImpl : public InputMethodManager, |
| const std::string& language, |
| InputMethodEngine* instance) OVERRIDE; |
| virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; |
| + virtual void GetInputMethodExtensions( |
| + InputMethodDescriptors* result) OVERRIDE; |
| + virtual void SetFilteredExtensionImes(std::vector<std::string>* ids) OVERRIDE; |
| virtual bool SwitchToNextInputMethod() OVERRIDE; |
| virtual bool SwitchToPreviousInputMethod() OVERRIDE; |
| virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; |
| @@ -143,6 +146,9 @@ class InputMethodManagerImpl : public InputMethodManager, |
| // The active input method ids cache. |
| std::vector<std::string> active_input_method_ids_; |
| + // These IMEs are not added to the ime list. |
|
James Hawkins
2012/09/18 15:47:31
// The list of IMEs that are filtered from the IME
Zachary Kuznia
2012/09/19 10:15:50
Done.
|
| + std::vector<std::string> filtered_extension_imes_; |
| + |
| // For screen locker. When the screen is locked, |previous_input_method_|, |
| // |current_input_method_|, and |active_input_method_ids_| above are copied |
| // to these "saved" variables. |