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 464a56744dc0ba32a7f93e12b9921af601e917b4..b491235726ed6849dc77215afebd04e2bd297799 100644 |
--- a/chrome/browser/chromeos/input_method/input_method_manager.h |
+++ b/chrome/browser/chromeos/input_method/input_method_manager.h |
@@ -55,7 +55,7 @@ class InputMethodManager { |
// Called when the list of properties is changed. |
virtual void PropertyListChanged( |
InputMethodManager* manager, |
- const ImePropertyList& current_ime_properties) = 0; |
+ const InputMethodPropertyList& current_ime_properties) = 0; |
}; |
// CandidateWindowObserver is notified of events related to the candidate |
@@ -269,10 +269,10 @@ class InputMethodManager { |
// the |accelerator|. |
virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; |
- virtual InputMethodDescriptor previous_input_method() const = 0; |
- virtual InputMethodDescriptor current_input_method() const = 0; |
+ virtual InputMethodDescriptor GetPreviousInputMethod() const = 0; |
+ virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; |
- virtual ImePropertyList current_ime_properties() const = 0; |
+ virtual InputMethodPropertyList GetCurrentInputMethodProperties() const = 0; |
}; |
} // namespace input_method |