Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1744)

Unified Diff: chrome/browser/chromeos/input_method/input_method_manager.h

Issue 9696025: Rename InputMethodManager::current_input_method() to InputMethodManager::GetCurrentInputMethod(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698