Index: chrome/browser/chromeos/login/signed_settings_cache.h |
diff --git a/chrome/browser/chromeos/login/signed_settings_cache.h b/chrome/browser/chromeos/login/signed_settings_cache.h |
deleted file mode 100644 |
index a73ad8c181906bb003094b610c430b051c521856..0000000000000000000000000000000000000000 |
--- a/chrome/browser/chromeos/login/signed_settings_cache.h |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNED_SETTINGS_CACHE_H_ |
-#define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNED_SETTINGS_CACHE_H_ |
- |
-namespace enterprise_management { |
-class PolicyData; |
-} |
- |
-class PrefService; |
- |
-namespace chromeos { |
- |
-// There is need (metrics at OOBE stage) to store settings |
-// (that normally would go into SignedSettings storage) |
-// before owner has been assigned (hence no key is available). |
-// This set of functions serves as a transient storage in that case. |
-namespace signed_settings_cache { |
-// Registers required pref section. |
-void RegisterPrefs(PrefService* local_state); |
- |
-// Stores a new policy blob inside the cache stored in |local_state|. |
-bool Store(const enterprise_management::PolicyData &policy, |
- PrefService* local_state); |
- |
-// Retrieves the policy blob from the cache stored in |local_state|. |
-bool Retrieve(enterprise_management::PolicyData *policy, |
- PrefService* local_state); |
- |
-// Call this after owner has been assigned to persist settings |
-// into SignedSettings storage. |
-void Finalize(PrefService* local_state); |
-} // namespace signed_settings_cache |
- |
-} // namespace chromeos |
- |
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNED_SETTINGS_CACHE_H_ |