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

Side by Side Diff: components/policy/core/common/policy_map.cc

Issue 78763002: Move PolicyMap and its dependencies to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export nested struct 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 | 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/policy/policy_map.h" 5 #include "components/policy/core/common/policy_map.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
11 11
12 namespace policy { 12 namespace policy {
13 13
14 bool PolicyMap::Entry::has_higher_priority_than( 14 bool PolicyMap::Entry::has_higher_priority_than(
15 const PolicyMap::Entry& other) const { 15 const PolicyMap::Entry& other) const {
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 map_.clear(); 177 map_.clear();
178 } 178 }
179 179
180 // static 180 // static
181 bool PolicyMap::MapEntryEquals(const PolicyMap::PolicyMapType::value_type& a, 181 bool PolicyMap::MapEntryEquals(const PolicyMap::PolicyMapType::value_type& a,
182 const PolicyMap::PolicyMapType::value_type& b) { 182 const PolicyMap::PolicyMapType::value_type& b) {
183 return a.first == b.first && a.second.Equals(b.second); 183 return a.first == b.first && a.second.Equals(b.second);
184 } 184 }
185 185
186 } // namespace policy 186 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698