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

Unified Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h

Issue 2107353002: Fix the flaky test KioskTest.LaunchAppUserCancel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify Created 4 years, 6 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/ui/webui/chromeos/login/signin_screen_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
index a9857e2f15361353a89c46722d67f76fdefbb305..2a346d73a5bf4a03b97697cc7e26067742491cf7 100644
--- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
+++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
@@ -178,10 +178,19 @@ class SigninScreenHandlerDelegate {
// Whether login as guest is available.
virtual bool IsShowGuest() const = 0;
- // Weather to show the user pods or only GAIA sign in.
+ // Whether to show the user pods or only GAIA sign in.
// Public sessions are always shown.
virtual bool IsShowUsers() const = 0;
+ // Whether the show user pods setting has changed.
+ virtual bool ShowUsersHasChanged() const = 0;
+
+ // Whether the create new account option in GAIA is enabled by the setting.
+ virtual bool IsAllowNewUser() const = 0;
+
+ // Whether the allow new user setting has changed.
+ virtual bool AllowNewUserChanged() const = 0;
+
// Whether user sign in has completed.
virtual bool IsUserSigninCompleted() const = 0;

Powered by Google App Engine
This is Rietveld 408576698