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

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

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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_delegate_impl.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc b/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc
index 50a70b801bd5f77f926f4a7f07a4ccd8f256dbc3..ddfbe69dea6b4f17f41d8981ef514b9847453d28 100644
--- a/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc
+++ b/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc
@@ -26,11 +26,12 @@ std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const {
return std::string();
}
-string16 InputMethodDelegateImpl::GetLocalizedString(int resource_id) const {
+base::string16 InputMethodDelegateImpl::GetLocalizedString(
+ int resource_id) const {
return l10n_util::GetStringUTF16(resource_id);
}
-string16 InputMethodDelegateImpl::GetDisplayLanguageName(
+base::string16 InputMethodDelegateImpl::GetDisplayLanguageName(
const std::string& language_code) const {
DCHECK(g_browser_process);
return l10n_util::GetDisplayNameForLocale(

Powered by Google App Engine
This is Rietveld 408576698