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(); |
} |