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

Unified Diff: chrome/browser/chromeos/cros/cryptohome_library.h

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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
« no previous file with comments | « chrome/browser/chromeos/cros/cros_library.cc ('k') | chrome/browser/chromeos/cros/cryptohome_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/cryptohome_library.h
diff --git a/chrome/browser/chromeos/cros/cryptohome_library.h b/chrome/browser/chromeos/cros/cryptohome_library.h
index ea2a80931053497206a313a27f6b008cfcbe16a4..cee7063e8f8df813a5bb9b1d45884b1a96677d25 100644
--- a/chrome/browser/chromeos/cros/cryptohome_library.h
+++ b/chrome/browser/chromeos/cros/cryptohome_library.h
@@ -49,36 +49,8 @@ class CryptohomeLibrary {
// Asks cryptohomed for the system salt.
virtual CryptohomeBlob GetSystemSalt() = 0;
-};
-
-// This class handles the interaction with the ChromeOS cryptohome library APIs.
-class CryptohomeLibraryImpl : public CryptohomeLibrary {
- public:
- CryptohomeLibraryImpl() {}
- virtual ~CryptohomeLibraryImpl() {}
-
- // CryptohomeLibrary overrides.
- virtual bool Mount(const std::string& user_email,
- const std::string& passhash,
- int* error_code);
-
- virtual bool MountForBwsi(int* error_code);
-
- virtual bool CheckKey(const std::string& user_email,
- const std::string& passhash);
-
- virtual bool MigrateKey(const std::string& user_email,
- const std::string& old_hash,
- const std::string& new_hash);
-
- virtual bool Remove(const std::string& user_email);
-
- virtual bool IsMounted();
-
- virtual CryptohomeBlob GetSystemSalt();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(CryptohomeLibraryImpl);
+ // Get library implementation.
+ static CryptohomeLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/cros_library.cc ('k') | chrome/browser/chromeos/cros/cryptohome_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698