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

Unified Diff: chrome/browser/chromeos/login/user_image_downloader.cc

Issue 2498003: Revert r48735 "Added user image screen for new user login (or old user logging in through" (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: removed grd files from cl Created 10 years, 7 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/login/user_image_downloader.cc
diff --git a/chrome/browser/chromeos/login/user_image_downloader.cc b/chrome/browser/chromeos/login/user_image_downloader.cc
index bdfb9ec11d7a0fb754d9c742f32ae9fecbd9301d..a7c5816faa300b9281cda75c13c1fc5ba005c09c 100644
--- a/chrome/browser/chromeos/login/user_image_downloader.cc
+++ b/chrome/browser/chromeos/login/user_image_downloader.cc
@@ -40,7 +40,7 @@ UserImageDownloader::UserImageDownloader(const std::string& username,
: username_(username),
auth_token_(auth_token) {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
- if (auth_token_.empty())
+ if (auth_token.empty())
return;
profile_fetcher_.reset(new URLFetcher(GURL(kUserInfoURL),
@@ -49,7 +49,7 @@ UserImageDownloader::UserImageDownloader(const std::string& username,
profile_fetcher_->set_request_context(
ProfileManager::GetDefaultProfile()->GetRequestContext());
profile_fetcher_->set_extra_request_headers(
- StringPrintf(kAuthorizationHeader, auth_token_.c_str()));
+ StringPrintf(kAuthorizationHeader, auth_token.c_str()));
profile_fetcher_->Start();
}
« no previous file with comments | « chrome/browser/chromeos/login/user_image_downloader.h ('k') | chrome/browser/chromeos/login/user_image_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698