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

Side by Side Diff: chrome/browser/policy/configuration_policy_handler_list.cc

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 years 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
(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/policy/configuration_policy_handler_list.h"
6
7 #include "base/prefs/pref_value_map.h"
8 #include "base/stl_util.h"
9 #include "chrome/browser/policy/configuration_policy_handler.h"
10 #include "components/policy/core/browser/policy_error_map.h"
11 #include "components/policy/core/common/policy_map.h"
12 #include "grit/component_strings.h"
13
14 namespace policy {
15 ConfigurationPolicyHandlerList::ConfigurationPolicyHandlerList(
16 const GetChromePolicyDetailsCallback& details_callback)
17 : details_callback_(details_callback) {}
18
19 ConfigurationPolicyHandlerList::~ConfigurationPolicyHandlerList() {
20 STLDeleteElements(&handlers_);
21 }
22
23 void ConfigurationPolicyHandlerList::AddHandler(
24 scoped_ptr<ConfigurationPolicyHandler> handler) {
25 handlers_.push_back(handler.release());
26 }
27
28 void ConfigurationPolicyHandlerList::ApplyPolicySettings(
29 const PolicyMap& policies,
30 PrefValueMap* prefs,
31 PolicyErrorMap* errors) const {
32 PolicyErrorMap scoped_errors;
33 if (!errors)
34 errors = &scoped_errors;
35
36 std::vector<ConfigurationPolicyHandler*>::const_iterator handler;
37 for (handler = handlers_.begin(); handler != handlers_.end(); ++handler) {
38 if ((*handler)->CheckPolicySettings(policies, errors) && prefs)
39 (*handler)->ApplyPolicySettings(policies, prefs);
40 }
41
42 for (PolicyMap::const_iterator it = policies.begin();
43 it != policies.end();
44 ++it) {
45 const PolicyDetails* details =
46 details_callback_.is_null() ? NULL : details_callback_.Run(it->first);
47 if (details && details->is_deprecated)
48 errors->AddError(it->first, IDS_POLICY_DEPRECATED);
49 }
50 }
51
52 void ConfigurationPolicyHandlerList::PrepareForDisplaying(
53 PolicyMap* policies) const {
54 std::vector<ConfigurationPolicyHandler*>::const_iterator handler;
55 for (handler = handlers_.begin(); handler != handlers_.end(); ++handler)
56 (*handler)->PrepareForDisplaying(policies);
57 }
58
59 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698