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

Unified Diff: chrome/browser/chromeos/login/auth_attempt_state.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/auth_attempt_state.h
diff --git a/chrome/browser/chromeos/login/auth_attempt_state.h b/chrome/browser/chromeos/login/auth_attempt_state.h
new file mode 100644
index 0000000000000000000000000000000000000000..46d93d4eec2d4bb0f33f13a5d08df2d3d5b40183
--- /dev/null
+++ b/chrome/browser/chromeos/login/auth_attempt_state.h
@@ -0,0 +1,83 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_H_
+#pragma once
+
+#include <string>
+
+#include "chrome/browser/chromeos/login/login_status_consumer.h"
+#include "chrome/common/net/gaia/gaia_auth_consumer.h"
+
+namespace chromeos {
+
+// Tracks the state associated with a single attempt to log in to chromium os.
+// Enforces that methods are only called on the IO thread.
+
+class AuthAttemptState {
+ public:
+ AuthAttemptState(const std::string& username,
+ const std::string& password,
+ const std::string& ascii_hash,
+ const std::string& login_token,
+ const std::string& login_captcha);
+
+ virtual ~AuthAttemptState();
+
+ // Copy |credentials| and |outcome| into this object, so we can have
+ // a copy we're sure to own, and can make available on the IO thread.
+ // Must be called from the IO thread.
+ void RecordOnlineLoginStatus(
+ const GaiaAuthConsumer::ClientLoginResult& credentials,
+ const LoginFailure& outcome);
+
+ // Copy |offline_code| and |offline_outcome| into this object, so we can have
+ // a copy we're sure to own, and can make available on the IO thread.
+ // Must be called from the IO thread.
+ void RecordOfflineLoginStatus(bool offline_outcome, int offline_code);
+
+ // Blow away locally stored offline login status.
+ // Must be called from the IO thread.
+ void ResetOfflineLoginStatus();
+
+ virtual bool online_complete();
+ virtual const LoginFailure& online_outcome();
+ virtual const GaiaAuthConsumer::ClientLoginResult& credentials();
+
+ virtual bool offline_complete();
+ virtual bool offline_outcome();
+ virtual int offline_code();
+
+ // Saved so we can retry client login, and also so we know for whom login
+ // has succeeded, in the event of successful completion.
+ const std::string username;
+
+ // These fields are saved so we can retry client login.
+ const std::string password;
+ const std::string ascii_hash;
+ const std::string login_token;
+ const std::string login_captcha;
+
+ protected:
+ bool unlock_; // True if authenticating to unlock the computer.
+ bool try_again_; // True if we're willing to retry the login attempt.
+
+ // Status of our online login attempt.
+ bool online_complete_;
+ LoginFailure online_outcome_;
+ GaiaAuthConsumer::ClientLoginResult credentials_;
+
+ // Status of our offline login attempt/user homedir mount attempt.
+ bool offline_complete_;
+ bool offline_outcome_;
+ int offline_code_;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(AuthAttemptState);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_H_
« no previous file with comments | « chrome/browser/chromeos/cros/mock_cryptohome_library.h ('k') | chrome/browser/chromeos/login/auth_attempt_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698