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

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

Issue 15061007: Added a PolicyDomainDescriptor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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
« 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" 9 #include "chrome/browser/policy/policy_map.h"
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 if (it_this->first != it_other->first || 97 if (it_this->first != it_other->first ||
98 !it_this->second->Equals(*it_other->second)) { 98 !it_this->second->Equals(*it_other->second)) {
99 return false; 99 return false;
100 } 100 }
101 ++it_this; 101 ++it_this;
102 ++it_other; 102 ++it_other;
103 } 103 }
104 return it_this == end() && it_other == other.end(); 104 return it_this == end() && it_other == other.end();
105 } 105 }
106 106
107 PolicyBundle::const_iterator PolicyBundle::begin() const {
108 return policy_bundle_.begin();
109 }
110
111 PolicyBundle::const_iterator PolicyBundle::end() const {
112 return policy_bundle_.end();
113 }
114
115 void PolicyBundle::Clear() { 107 void PolicyBundle::Clear() {
116 STLDeleteValues(&policy_bundle_); 108 STLDeleteValues(&policy_bundle_);
117 } 109 }
118 110
119 } // namespace policy 111 } // 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