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

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

Issue 12218078: Implement a policy to autologin a public account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more nits Created 7 years, 9 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_display.h
diff --git a/chrome/browser/chromeos/login/login_display.h b/chrome/browser/chromeos/login/login_display.h
index 97182f5aed6e9d9bc752795846221e8484811b2c..f37293587c691e4055984c389a2dcad287f98431 100644
--- a/chrome/browser/chromeos/login/login_display.h
+++ b/chrome/browser/chromeos/login/login_display.h
@@ -67,6 +67,9 @@ class LoginDisplay : public RemoveUserDelegate {
// Sign in into the public account identified by |username|.
virtual void LoginAsPublicAccount(const std::string& username) = 0;
+ // Notify the delegate when the sign-in UI is finished loading.
+ virtual void OnSigninScreenReady() = 0;
+
// Called when existing user pod is selected in the UI.
virtual void OnUserSelected(const std::string& username) = 0;
@@ -79,6 +82,9 @@ class LoginDisplay : public RemoveUserDelegate {
// Shows wrong HWID screen.
virtual void ShowWrongHWIDScreen() = 0;
+ // Restarts the public-session auto-login timer if it is running.
+ virtual void ResetPublicSessionAutoLoginTimer() = 0;
+
// Ignore password change, remove existing cryptohome and
// force full sync of user data.
virtual void ResyncUserData() = 0;

Powered by Google App Engine
This is Rietveld 408576698