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

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

Issue 6821075: Chrome-side lockbox bindings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed Ken's nits. Created 9 years, 8 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 | « no previous file | 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 601944948a8ed2263fa129a86948c00938ffe19a..ed595a7219e3f479b01168c480b609f424754a4a 100644
--- a/chrome/browser/chromeos/cros/cryptohome_library.h
+++ b/chrome/browser/chromeos/cros/cryptohome_library.h
@@ -132,6 +132,17 @@ class CryptohomeLibrary {
// shown to user.
virtual void TpmClearStoredPassword() = 0;
+ virtual bool InstallAttributesGet(const std::string& name,
+ std::string* value) = 0;
+ virtual bool InstallAttributesSet(const std::string& name,
+ const std::string& value) = 0;
+ virtual int InstallAttributesCount() = 0;
+ virtual bool InstallAttributesFinalize() = 0;
+ virtual bool InstallAttributesIsReady() = 0;
+ virtual bool InstallAttributesIsSecure() = 0;
+ virtual bool InstallAttributesIsInvalid() = 0;
+ virtual bool InstallAttributesIsFirstInstall() = 0;
+
// Factory function, creates a new instance and returns ownership.
// For normal usage, access the singleton via CrosLibrary::Get().
static CryptohomeLibrary* GetImpl(bool stub);
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cryptohome_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698