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

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

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/component_extension_ime_manager_impl.cc
diff --git a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.cc b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.cc
index ecca8b9d48c51976f8102c1d50cd8baa4674d2fd..cd6049fe5aef94c40734f2c473aef3d8065f0c14 100644
--- a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.cc
+++ b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.cc
@@ -319,7 +319,7 @@ bool ComponentExtensionIMEManagerImpl::ReadEngineComponent(
if (out->display_name.find("__MSG_") == 0) {
const InputMethodNameMap* map = kInputMethodNameMap;
size_t map_size = arraysize(kInputMethodNameMap);
- std::string name = StringToUpperASCII(out->display_name);
+ std::string name = base::StringToUpperASCII(out->display_name);
const InputMethodNameMap map_key = {name.c_str(), 0};
const InputMethodNameMap* p =
std::lower_bound(map, map + map_size, map_key);
« no previous file with comments | « chrome/browser/chromeos/events/event_rewriter.cc ('k') | chrome/browser/chromeos/input_method/input_method_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698