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

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

Issue 50613003: Move the PolicyDomain and PolicyNamespace types to the policy component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 1 month 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
« no previous file with comments | « chrome/browser/policy/policy_bundle.h ('k') | chrome/browser/policy/policy_domain_descriptor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/policy/policy_bundle.h" 5 #include "chrome/browser/policy/policy_bundle.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "chrome/browser/policy/policy_map.h"
10 9
11 namespace policy { 10 namespace policy {
12 11
13 PolicyBundle::PolicyBundle() {} 12 PolicyBundle::PolicyBundle() {}
14 13
15 PolicyBundle::~PolicyBundle() { 14 PolicyBundle::~PolicyBundle() {
16 Clear(); 15 Clear();
17 } 16 }
18 17
19 PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) { 18 PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ++it_other; 101 ++it_other;
103 } 102 }
104 return it_this == end() && it_other == other.end(); 103 return it_this == end() && it_other == other.end();
105 } 104 }
106 105
107 void PolicyBundle::Clear() { 106 void PolicyBundle::Clear() {
108 STLDeleteValues(&policy_bundle_); 107 STLDeleteValues(&policy_bundle_);
109 } 108 }
110 109
111 } // namespace policy 110 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/policy_bundle.h ('k') | chrome/browser/policy/policy_domain_descriptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698