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

Side by Side Diff: components/sync/driver/sync_policy_handler.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 2 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "components/sync/driver/sync_policy_handler.h" 5 #include "components/sync/driver/sync_policy_handler.h"
6 6
7 #include "base/values.h" 7 #include "base/values.h"
8 #include "components/policy/core/common/policy_map.h" 8 #include "components/policy/core/common/policy_map.h"
9 #include "components/policy/policy_constants.h" 9 #include "components/policy/policy_constants.h"
10 #include "components/prefs/pref_value_map.h" 10 #include "components/prefs/pref_value_map.h"
11 #include "components/sync/driver/pref_names.h" 11 #include "components/sync/driver/pref_names.h"
12 12
13 namespace sync_driver { 13 namespace syncer {
14 14
15 SyncPolicyHandler::SyncPolicyHandler() 15 SyncPolicyHandler::SyncPolicyHandler()
16 : policy::TypeCheckingPolicyHandler(policy::key::kSyncDisabled, 16 : policy::TypeCheckingPolicyHandler(policy::key::kSyncDisabled,
17 base::Value::TYPE_BOOLEAN) {} 17 base::Value::TYPE_BOOLEAN) {}
18 18
19 SyncPolicyHandler::~SyncPolicyHandler() {} 19 SyncPolicyHandler::~SyncPolicyHandler() {}
20 20
21 void SyncPolicyHandler::ApplyPolicySettings(const policy::PolicyMap& policies, 21 void SyncPolicyHandler::ApplyPolicySettings(const policy::PolicyMap& policies,
22 PrefValueMap* prefs) { 22 PrefValueMap* prefs) {
23 const base::Value* value = policies.GetValue(policy_name()); 23 const base::Value* value = policies.GetValue(policy_name());
24 bool disable_sync; 24 bool disable_sync;
25 if (value && value->GetAsBoolean(&disable_sync) && disable_sync) 25 if (value && value->GetAsBoolean(&disable_sync) && disable_sync)
26 prefs->SetValue(sync_driver::prefs::kSyncManaged, value->CreateDeepCopy()); 26 prefs->SetValue(prefs::kSyncManaged, value->CreateDeepCopy());
27 } 27 }
28 28
29 } // namespace sync_driver 29 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/driver/sync_policy_handler.h ('k') | components/sync/driver/sync_policy_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698