| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 const AssembleAndSignPolicyCallback& callback) OVERRIDE; | 45 const AssembleAndSignPolicyCallback& callback) OVERRIDE; |
| 46 | 46 |
| 47 // NotificationObserver implementation: | 47 // NotificationObserver implementation: |
| 48 virtual void Observe(int type, | 48 virtual void Observe(int type, |
| 49 const content::NotificationSource& source, | 49 const content::NotificationSource& source, |
| 50 const content::NotificationDetails& details) OVERRIDE; | 50 const content::NotificationDetails& details) OVERRIDE; |
| 51 | 51 |
| 52 // TPMTokenLoader::Observer: | 52 // TPMTokenLoader::Observer: |
| 53 virtual void OnTPMTokenReady() OVERRIDE; | 53 virtual void OnTPMTokenReady() OVERRIDE; |
| 54 | 54 |
| 55 // Checks whether NSS slots with private key are mounted or | 55 // Checks if the user is the device owner, without the user profile having to |
| 56 // not. Responds via |callback|. | 56 // been initialized. Should be used only if login state is in safe mode. |
| 57 static void IsPrivateKeyExistAsync(const IsOwnerCallback& callback); | 57 static void IsOwnerForSafeModeAsync(const std::string& user_id, |
| 58 const std::string& user_hash, |
| 59 const IsOwnerCallback& callback); |
| 58 | 60 |
| 59 static void SetOwnerKeyUtilForTesting( | 61 static void SetOwnerKeyUtilForTesting( |
| 60 const scoped_refptr<OwnerKeyUtil>& owner_key_util); | 62 const scoped_refptr<OwnerKeyUtil>& owner_key_util); |
| 61 | 63 |
| 62 static void SetDeviceSettingsServiceForTesting( | 64 static void SetDeviceSettingsServiceForTesting( |
| 63 DeviceSettingsService* device_settings_service); | 65 DeviceSettingsService* device_settings_service); |
| 64 | 66 |
| 65 private: | 67 private: |
| 66 friend class OwnerSettingsServiceFactory; | 68 friend class OwnerSettingsServiceFactory; |
| 67 | 69 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 base::ThreadChecker thread_checker_; | 105 base::ThreadChecker thread_checker_; |
| 104 | 106 |
| 105 base::WeakPtrFactory<OwnerSettingsService> weak_factory_; | 107 base::WeakPtrFactory<OwnerSettingsService> weak_factory_; |
| 106 | 108 |
| 107 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsService); | 109 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsService); |
| 108 }; | 110 }; |
| 109 | 111 |
| 110 } // namespace chromeos | 112 } // namespace chromeos |
| 111 | 113 |
| 112 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 114 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ |
| OLD | NEW |