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

Unified Diff: chrome/browser/chromeos/login/cookie_fetcher.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
« no previous file with comments | « chrome/browser/chromeos/login/camera.cc ('k') | chrome/browser/chromeos/login/login_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/cookie_fetcher.cc
diff --git a/chrome/browser/chromeos/login/cookie_fetcher.cc b/chrome/browser/chromeos/login/cookie_fetcher.cc
index 48c7decf88e2a1b14c992ebb3a6844e1aa6e997a..512dedf82212b40a4a81dd8525fa793ba4a2e339 100644
--- a/chrome/browser/chromeos/login/cookie_fetcher.cc
+++ b/chrome/browser/chromeos/login/cookie_fetcher.cc
@@ -53,7 +53,10 @@ void CookieFetcher::OnURLFetchComplete(const URLFetcher* source,
}
void CookieFetcher::DelegateImpl::DoLaunch(Profile* profile) {
- if (profile == ProfileManager::GetDefaultProfile()) {
+ FilePath user_data_dir;
+ PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
+ ProfileManager* profile_manager = g_browser_process->profile_manager();
+ if (profile == profile_manager->GetDefaultProfile(user_data_dir)) {
LoginUtils::DoBrowserLaunch(profile);
} else {
LOG(ERROR) <<
« no previous file with comments | « chrome/browser/chromeos/login/camera.cc ('k') | chrome/browser/chromeos/login/login_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698