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

Unified Diff: chrome/browser/signin/signin_names_io_thread.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (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
« no previous file with comments | « chrome/browser/signin/signin_manager.cc ('k') | chrome/browser/signin/signin_names_io_thread_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/signin_names_io_thread.cc
diff --git a/chrome/browser/signin/signin_names_io_thread.cc b/chrome/browser/signin/signin_names_io_thread.cc
index e1f7b317cae2f1afebaef06be7a60b9ac5ed2f01..0a795090e4c4a96d540f81a659da612e246fdaea 100644
--- a/chrome/browser/signin/signin_names_io_thread.cc
+++ b/chrome/browser/signin/signin_names_io_thread.cc
@@ -65,13 +65,13 @@ void SigninNamesOnIOThread::Observe(
case chrome::NOTIFICATION_GOOGLE_SIGNIN_SUCCESSFUL: {
const GoogleServiceSigninSuccessDetails* signin_details =
content::Details<GoogleServiceSigninSuccessDetails>(details).ptr();
- PostTaskToIOThread(type, UTF8ToUTF16(signin_details->username));
+ PostTaskToIOThread(type, base::UTF8ToUTF16(signin_details->username));
break;
}
case chrome::NOTIFICATION_GOOGLE_SIGNED_OUT: {
const GoogleServiceSignoutDetails* signout_details =
content::Details<GoogleServiceSignoutDetails>(details).ptr();
- PostTaskToIOThread(type, UTF8ToUTF16(signout_details->username));
+ PostTaskToIOThread(type, base::UTF8ToUTF16(signout_details->username));
break;
}
default:
« no previous file with comments | « chrome/browser/signin/signin_manager.cc ('k') | chrome/browser/signin/signin_names_io_thread_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698