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

Unified Diff: chrome/browser/chromeos/login/cryptohome_op.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/cryptohome_op.h
diff --git a/chrome/browser/chromeos/login/cryptohome_op.h b/chrome/browser/chromeos/login/cryptohome_op.h
new file mode 100644
index 0000000000000000000000000000000000000000..8ac417a4a6240e1b537928568db3195ede8834d5
--- /dev/null
+++ b/chrome/browser/chromeos/login/cryptohome_op.h
@@ -0,0 +1,102 @@
+// 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_CRYPTOHOME_OP_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_CRYPTOHOME_OP_H_
+#pragma once
+
+#include <string>
+
+#include "base/ref_counted.h"
+#include "chrome/browser/chromeos/cros/cryptohome_library.h"
+#include "chrome/browser/chrome_thread.h"
+
+namespace chromeos {
+class AuthAttemptState;
+class AuthAttemptStateResolver;
+
+class CryptohomeOp
+ : public base::RefCountedThreadSafe<CryptohomeOp>,
+ public CryptohomeLibrary::Delegate {
+ public:
+ CryptohomeOp(AuthAttemptState* current_attempt,
+ AuthAttemptStateResolver* callback);
+
+ virtual ~CryptohomeOp();
+
+ virtual bool Initiate() = 0;
+
+ // Implementation of CryptohomeLibrary::Delegate.
+ virtual void OnComplete(bool success, int return_code);
+
+ protected:
+ virtual void TriggerResolve(bool offline_outcome, int offline_code);
+
+ AuthAttemptState* const attempt_;
+ AuthAttemptStateResolver* const resolver_;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(CryptohomeOp);
+};
+
+class MountAttempt : public CryptohomeOp {
+ public:
+ MountAttempt(AuthAttemptState* current_attempt,
+ AuthAttemptStateResolver* callback);
+ virtual ~MountAttempt();
+
+ bool Initiate();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MountAttempt);
+};
+
+class MountGuestAttempt : public CryptohomeOp {
+ public:
+ MountGuestAttempt(AuthAttemptState* current_attempt,
+ AuthAttemptStateResolver* callback);
+ virtual ~MountGuestAttempt();
+
+ bool Initiate();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MountGuestAttempt);
+};
+
+class MigrateAttempt : public CryptohomeOp {
+ public:
+ MigrateAttempt(AuthAttemptState* current_attempt,
+ AuthAttemptStateResolver* callback,
+ bool passing_old_hash,
+ const std::string& hash);
+ virtual ~MigrateAttempt();
+
+ bool Initiate();
+
+ private:
+ void TriggerResolve(bool offline_outcome, int offline_code);
+
+ const bool is_old_hash_;
+ const std::string hash_;
+
+ DISALLOW_COPY_AND_ASSIGN(MigrateAttempt);
+};
+
+class RemoveAttempt : public CryptohomeOp {
+ public:
+ RemoveAttempt(AuthAttemptState* current_attempt,
+ AuthAttemptStateResolver* callback);
+ virtual ~RemoveAttempt();
+
+ bool Initiate();
+
+ private:
+ void TriggerResolve(bool offline_outcome, int offline_code);
+
+ DISALLOW_COPY_AND_ASSIGN(RemoveAttempt);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_CRYPTOHOME_OP_H_
« no previous file with comments | « chrome/browser/chromeos/login/auth_attempt_state_resolver.cc ('k') | chrome/browser/chromeos/login/cryptohome_op.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698