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

Unified Diff: chrome/browser/chromeos/input_method/input_method_manager_impl.cc

Issue 13954012: Move GetFallbackInputMethodDescriptor function to InputMethodUtil. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/input_method/input_method_manager_impl.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl.cc b/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
index 9b5fcdaf61741ec8d7baa1cdce2f81910ead6ac4..234e2ff09d503e780b5362a92a9c0c5cd57da317 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
+++ b/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
@@ -130,7 +130,7 @@ InputMethodManagerImpl::GetActiveInputMethods() const {
// Initially |active_input_method_ids_| is empty. browser_tests might take
// this path.
result->push_back(
- InputMethodDescriptor::GetFallbackInputMethodDescriptor());
+ InputMethodUtil::GetFallbackInputMethodDescriptor());
}
return result.Pass();
}
@@ -612,7 +612,7 @@ void InputMethodManagerImpl::SwitchToNextInputMethodInternal(
InputMethodDescriptor InputMethodManagerImpl::GetCurrentInputMethod() const {
if (current_input_method_.id().empty())
- return InputMethodDescriptor::GetFallbackInputMethodDescriptor();
+ return InputMethodUtil::GetFallbackInputMethodDescriptor();
return current_input_method_;
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698