| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chromeos/settings/device_settings_cache.h" | |
| 6 | |
| 7 #include <string> | |
| 8 | |
| 9 #include "base/base64.h" | |
| 10 #include "base/bind.h" | |
| 11 #include "chrome/browser/chromeos/settings/cros_settings.h" | |
| 12 #include "chrome/browser/policy/proto/device_management_backend.pb.h" | |
| 13 #include "chrome/browser/prefs/pref_service.h" | |
| 14 #include "chrome/common/pref_names.h" | |
| 15 | |
| 16 namespace em = enterprise_management; | |
| 17 | |
| 18 namespace chromeos { | |
| 19 | |
| 20 namespace device_settings_cache { | |
| 21 | |
| 22 void RegisterPrefs(PrefService* local_state) { | |
| 23 local_state->RegisterStringPref(prefs::kDeviceSettingsCache, | |
| 24 "invalid", | |
| 25 PrefService::UNSYNCABLE_PREF); | |
| 26 } | |
| 27 | |
| 28 bool Store(const em::PolicyData& policy, PrefService* local_state) { | |
| 29 if (local_state) { | |
| 30 std::string policy_string = policy.SerializeAsString(); | |
| 31 std::string encoded; | |
| 32 if (!base::Base64Encode(policy_string, &encoded)) { | |
| 33 LOG(ERROR) << "Can't encode policy in base64."; | |
| 34 return false; | |
| 35 } | |
| 36 local_state->SetString(prefs::kDeviceSettingsCache, encoded); | |
| 37 return true; | |
| 38 } | |
| 39 return false; | |
| 40 } | |
| 41 | |
| 42 bool Retrieve(em::PolicyData *policy, PrefService* local_state) { | |
| 43 if (local_state) { | |
| 44 std::string encoded = | |
| 45 local_state->GetString(prefs::kDeviceSettingsCache); | |
| 46 std::string policy_string; | |
| 47 if (!base::Base64Decode(encoded, &policy_string)) { | |
| 48 // This is normal and happens on first boot. | |
| 49 VLOG(1) << "Can't decode policy from base64."; | |
| 50 return false; | |
| 51 } | |
| 52 return policy->ParseFromString(policy_string); | |
| 53 } | |
| 54 return false; | |
| 55 } | |
| 56 | |
| 57 } // namespace device_settings_cache | |
| 58 | |
| 59 } // namespace chromeos | |
| OLD | NEW |