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

Unified Diff: chrome/browser/chromeos/login/login_utils.h

Issue 656283002: [session_manager] Move user session initialization code out of ExistingUserController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update FakeLoginUtils to launch browser Created 6 years, 2 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/login_utils.h
diff --git a/chrome/browser/chromeos/login/login_utils.h b/chrome/browser/chromeos/login/login_utils.h
index cb8444419b07406a1ff4ed29283581b6d0ff0dcd..61d284a556cc3d38580e5d1d6140f9e6fda3d36f 100644
--- a/chrome/browser/chromeos/login/login_utils.h
+++ b/chrome/browser/chromeos/login/login_utils.h
@@ -29,7 +29,10 @@ class LoginUtils {
class Delegate {
public:
// Called after profile is loaded and prepared for the session.
- virtual void OnProfilePrepared(Profile* profile) = 0;
+ // |browser_launched| will be true is browser has been launched, otherwise
+ // it will return false and client is responsible on launching browser.
+ virtual void OnProfilePrepared(Profile* profile,
+ bool browser_launched) = 0;
#if defined(ENABLE_RLZ)
// Called after post-profile RLZ initialization.

Powered by Google App Engine
This is Rietveld 408576698