Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: chrome/browser/chromeos/settings/device_settings_cache.cc

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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(PrefServiceSimple* local_state) { 22 void RegisterPrefs(PrefRegistrarSimple* local_state) {
23 local_state->RegisterStringPref(prefs::kDeviceSettingsCache, "invalid"); 23 local_state->RegisterStringPref(prefs::kDeviceSettingsCache, "invalid");
24 } 24 }
25 25
26 bool Store(const em::PolicyData& policy, PrefService* local_state) { 26 bool Store(const em::PolicyData& policy, PrefService* local_state) {
27 if (local_state) { 27 if (local_state) {
28 std::string policy_string = policy.SerializeAsString(); 28 std::string policy_string = policy.SerializeAsString();
29 std::string encoded; 29 std::string encoded;
30 if (!base::Base64Encode(policy_string, &encoded)) { 30 if (!base::Base64Encode(policy_string, &encoded)) {
31 LOG(ERROR) << "Can't encode policy in base64."; 31 LOG(ERROR) << "Can't encode policy in base64.";
32 return false; 32 return false;
(...skipping 15 matching lines...) Expand all
48 return false; 48 return false;
49 } 49 }
50 return policy->ParseFromString(policy_string); 50 return policy->ParseFromString(policy_string);
51 } 51 }
52 return false; 52 return false;
53 } 53 }
54 54
55 } // namespace device_settings_cache 55 } // namespace device_settings_cache
56 56
57 } // namespace chromeos 57 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698