| 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 "chrome/browser/chromeos/settings/cros_settings.h" | 11 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 12 #include "chrome/browser/policy/proto/device_management_backend.pb.h" | 12 #include "chrome/browser/policy/proto/device_management_backend.pb.h" |
| 13 #include "chrome/browser/prefs/pref_service.h" | 13 #include "chrome/browser/prefs/pref_service.h" |
| 14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
| 15 | 15 |
| 16 namespace em = enterprise_management; | 16 namespace em = enterprise_management; |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 namespace device_settings_cache { | 20 namespace device_settings_cache { |
| 21 | 21 |
| 22 void RegisterPrefs(PrefService* local_state) { | 22 void RegisterPrefs(PrefServiceSimple* local_state) { |
| 23 local_state->RegisterStringPref(prefs::kDeviceSettingsCache, | 23 local_state->RegisterStringPref(prefs::kDeviceSettingsCache, "invalid"); |
| 24 "invalid", | |
| 25 PrefService::UNSYNCABLE_PREF); | |
| 26 } | 24 } |
| 27 | 25 |
| 28 bool Store(const em::PolicyData& policy, PrefService* local_state) { | 26 bool Store(const em::PolicyData& policy, PrefService* local_state) { |
| 29 if (local_state) { | 27 if (local_state) { |
| 30 std::string policy_string = policy.SerializeAsString(); | 28 std::string policy_string = policy.SerializeAsString(); |
| 31 std::string encoded; | 29 std::string encoded; |
| 32 if (!base::Base64Encode(policy_string, &encoded)) { | 30 if (!base::Base64Encode(policy_string, &encoded)) { |
| 33 LOG(ERROR) << "Can't encode policy in base64."; | 31 LOG(ERROR) << "Can't encode policy in base64."; |
| 34 return false; | 32 return false; |
| 35 } | 33 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 50 return false; | 48 return false; |
| 51 } | 49 } |
| 52 return policy->ParseFromString(policy_string); | 50 return policy->ParseFromString(policy_string); |
| 53 } | 51 } |
| 54 return false; | 52 return false; |
| 55 } | 53 } |
| 56 | 54 |
| 57 } // namespace device_settings_cache | 55 } // namespace device_settings_cache |
| 58 | 56 |
| 59 } // namespace chromeos | 57 } // namespace chromeos |
| OLD | NEW |