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

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

Issue 2692163003: cros: Add enterprise user session metrics (Closed)
Patch Set: fix crash on browser exit w/o login Created 3 years, 10 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/signin_specifics.h
diff --git a/chrome/browser/chromeos/login/signin_specifics.h b/chrome/browser/chromeos/login/signin_specifics.h
index da1014f5abfd41e80be4b1442c577e2f9d36a1ed..e7ecf81694e8f9e177035e853595344ab9cb29d0 100644
--- a/chrome/browser/chromeos/login/signin_specifics.h
+++ b/chrome/browser/chromeos/login/signin_specifics.h
@@ -19,10 +19,13 @@ struct SigninSpecifics {
std::string guest_mode_url;
// Specifies if locale should be passed to guest mode url.
- bool guest_mode_url_append_locale;
+ bool guest_mode_url_append_locale = false;
// Controls diagnostic mode for Kiosk App signin.
- bool kiosk_diagnostic_mode;
+ bool kiosk_diagnostic_mode = false;
+
+ // Whether it is an automatic login.
+ bool is_auto_login = false;
};
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698