| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOGIN_SIGNED_SETTINGS_CACHE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_CACHE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNED_SETTINGS_CACHE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_CACHE_H_ |
| 7 | 7 |
| 8 namespace enterprise_management { | 8 namespace enterprise_management { |
| 9 class PolicyData; | 9 class PolicyData; |
| 10 } | 10 } |
| 11 | 11 |
| 12 class PrefService; | 12 class PrefService; |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 // There is need (metrics at OOBE stage) to store settings | 16 // There is need (metrics at OOBE stage) to store settings |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 bool Retrieve(enterprise_management::PolicyData *policy, | 29 bool Retrieve(enterprise_management::PolicyData *policy, |
| 30 PrefService* local_state); | 30 PrefService* local_state); |
| 31 | 31 |
| 32 // Call this after owner has been assigned to persist settings | 32 // Call this after owner has been assigned to persist settings |
| 33 // into SignedSettings storage. | 33 // into SignedSettings storage. |
| 34 void Finalize(PrefService* local_state); | 34 void Finalize(PrefService* local_state); |
| 35 } // namespace signed_settings_cache | 35 } // namespace signed_settings_cache |
| 36 | 36 |
| 37 } // namespace chromeos | 37 } // namespace chromeos |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNED_SETTINGS_CACHE_H_ | 39 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_CACHE_H_ |
| OLD | NEW |