| 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 #include "chrome/browser/chromeos/settings/device_settings_cache.h" | 5 #include "chrome/browser/chromeos/settings/device_settings_cache.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/prefs/pref_registry_simple.h" | |
| 12 #include "base/prefs/pref_service.h" | |
| 13 #include "chrome/browser/chromeos/settings/cros_settings.h" | 11 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 14 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
| 13 #include "components/prefs/pref_registry_simple.h" |
| 14 #include "components/prefs/pref_service.h" |
| 15 #include "policy/proto/device_management_backend.pb.h" | 15 #include "policy/proto/device_management_backend.pb.h" |
| 16 | 16 |
| 17 namespace em = enterprise_management; | 17 namespace em = enterprise_management; |
| 18 | 18 |
| 19 namespace chromeos { | 19 namespace chromeos { |
| 20 | 20 |
| 21 namespace device_settings_cache { | 21 namespace device_settings_cache { |
| 22 | 22 |
| 23 void RegisterPrefs(PrefRegistrySimple* registry) { | 23 void RegisterPrefs(PrefRegistrySimple* registry) { |
| 24 registry->RegisterStringPref(prefs::kDeviceSettingsCache, "invalid"); | 24 registry->RegisterStringPref(prefs::kDeviceSettingsCache, "invalid"); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 46 return false; | 46 return false; |
| 47 } | 47 } |
| 48 return policy->ParseFromString(policy_string); | 48 return policy->ParseFromString(policy_string); |
| 49 } | 49 } |
| 50 return false; | 50 return false; |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace device_settings_cache | 53 } // namespace device_settings_cache |
| 54 | 54 |
| 55 } // namespace chromeos | 55 } // namespace chromeos |
| OLD | NEW |