Chromium Code Reviews| Index: chrome/browser/chromeos/input_method/input_method_manager.h |
| diff --git a/chrome/browser/chromeos/input_method/input_method_manager.h b/chrome/browser/chromeos/input_method/input_method_manager.h |
| index c93d53c155e39f3b203511814f2b6ebb0d7dbe0a..9dba506000737a9fc9120ae239d4d6cbe2ebf65b 100644 |
| --- a/chrome/browser/chromeos/input_method/input_method_manager.h |
| +++ b/chrome/browser/chromeos/input_method/input_method_manager.h |
| @@ -129,6 +129,10 @@ class InputMethodManager { |
| // Removes an input method extension. |
| virtual void RemoveInputMethodExtension(const std::string& id) = 0; |
| + virtual InputMethodDescriptors* GetInputMethodExtensions() = 0; |
|
Seigo Nonaka
2012/09/12 16:50:37
Please add function comments.
Zachary Kuznia
2012/09/13 09:28:32
Done.
|
| + |
| + virtual void SetFilteredExtensionImes(std::vector<std::string>& ids) = 0; |
|
Seigo Nonaka
2012/09/12 16:50:37
ditto and please use pointer instead. http://googl
Zachary Kuznia
2012/09/13 09:28:32
Done.
|
| + |
| // Gets the descriptor of the input method which is currently selected. |
| virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; |