| 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);
|
|
|