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

Unified Diff: chrome/browser/chromeos/login/fake_user_manager.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
« no previous file with comments | « chrome/browser/chromeos/login/fake_user_manager.h ('k') | chrome/browser/chromeos/login/helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/fake_user_manager.cc
diff --git a/chrome/browser/chromeos/login/fake_user_manager.cc b/chrome/browser/chromeos/login/fake_user_manager.cc
index 01df4d0c6c42c263f4f7577e950c19459f820a98..d17ec396bf1002d4a6d513170cf56d14c4d43399 100644
--- a/chrome/browser/chromeos/login/fake_user_manager.cc
+++ b/chrome/browser/chromeos/login/fake_user_manager.cc
@@ -108,7 +108,7 @@ void FakeUserManager::SwitchActiveUser(const std::string& email) {
void FakeUserManager::SaveUserDisplayName(
const std::string& username,
- const string16& display_name) {
+ const base::string16& display_name) {
for (UserList::iterator it = user_list_.begin();
it != user_list_.end(); ++it) {
if ((*it)->email() == username) {
@@ -179,7 +179,7 @@ Profile* FakeUserManager::GetProfileByUser(const User* user) const {
string16 FakeUserManager::GetUserDisplayName(
const std::string& username) const {
- return string16();
+ return base::string16();
}
std::string FakeUserManager::GetUserDisplayEmail(
« no previous file with comments | « chrome/browser/chromeos/login/fake_user_manager.h ('k') | chrome/browser/chromeos/login/helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698