| Index: chrome/browser/chromeos/login/ownership_service.h
|
| diff --git a/chrome/browser/chromeos/login/ownership_service.h b/chrome/browser/chromeos/login/ownership_service.h
|
| index 194ab18a33500fd1862bf58eb8ff72852bc30b0c..d7cb7854b81ba6f0b81702a3ea0f0ede472e1001 100644
|
| --- a/chrome/browser/chromeos/login/ownership_service.h
|
| +++ b/chrome/browser/chromeos/login/ownership_service.h
|
| @@ -29,7 +29,8 @@ class OwnershipService : public NotificationObserver {
|
| // Listed in upgrade order.
|
| OWNERSHIP_UNKNOWN = 0,
|
| OWNERSHIP_NONE,
|
| - OWNERSHIP_TAKEN
|
| + OWNERSHIP_USER,
|
| + OWNERSHIP_ENTERPRISE
|
| };
|
|
|
| // Returns the singleton instance of the OwnershipService.
|
| @@ -71,8 +72,8 @@ class OwnershipService : public NotificationObserver {
|
|
|
| // This method can be run either on FILE or UI threads. If |blocking| flag
|
| // is specified then it is guaranteed to return either OWNERSHIP_NONE or
|
| - // OWNERSHIP_TAKEN (and not OWNERSHIP_UNKNOWN), however in this case it may
|
| - // occasionally block doing i/o.
|
| + // OWNERSHIP_USER or OWNERSHIP_ENTERPRISE (and not OWNERSHIP_UNKNOWN), however
|
| + // in this case it may occasionally block doing i/o.
|
| virtual Status GetStatus(bool blocking);
|
|
|
| protected:
|
| @@ -104,6 +105,7 @@ class OwnershipService : public NotificationObserver {
|
| const std::vector<uint8>& signature,
|
| OwnerManager::Delegate* d);
|
| static void FailAttempt(OwnerManager::Delegate* d);
|
| + static Status DetermineOwnerType();
|
|
|
| OwnerManager* manager() { return manager_.get(); }
|
|
|
|
|