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

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

Issue 3407008: [Chrome OS] Infrastucture for doing offline/online login simultaneously (Closed)
Patch Set: re-upload (again) due to 500s Created 10 years, 3 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_status_consumer.h
diff --git a/chrome/browser/chromeos/login/login_status_consumer.h b/chrome/browser/chromeos/login/login_status_consumer.h
index bf2c3f0cd4f5666e497338c0bd74b919fb2c3c0a..b762e385b6da3e6fe3b9e1cebb0999a580041aca 100644
--- a/chrome/browser/chromeos/login/login_status_consumer.h
+++ b/chrome/browser/chromeos/login/login_status_consumer.h
@@ -16,6 +16,7 @@ namespace chromeos {
class LoginFailure {
public:
enum FailureReason {
+ NONE,
COULD_NOT_MOUNT_CRYPTOHOME,
COULD_NOT_MOUNT_TMPFS,
DATA_REMOVAL_FAILED, // Could not destroy your old data
@@ -45,6 +46,10 @@ class LoginFailure {
return LoginFailure(NETWORK_AUTH_FAILED, error);
}
+ static LoginFailure None() {
+ return LoginFailure(NONE);
+ }
+
const std::string GetErrorString() const {
switch (reason_) {
case DATA_REMOVAL_FAILED:

Powered by Google App Engine
This is Rietveld 408576698