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

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

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site Created 4 years, 4 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/policy/core/common/policy_bundle.h" 5 #include "components/policy/core/common/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 9
10 namespace policy { 10 namespace policy {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 !it_this->second->Equals(*it_other->second)) { 97 !it_this->second->Equals(*it_other->second)) {
98 return false; 98 return false;
99 } 99 }
100 ++it_this; 100 ++it_this;
101 ++it_other; 101 ++it_other;
102 } 102 }
103 return it_this == end() && it_other == other.end(); 103 return it_this == end() && it_other == other.end();
104 } 104 }
105 105
106 void PolicyBundle::Clear() { 106 void PolicyBundle::Clear() {
107 STLDeleteValues(&policy_bundle_); 107 base::STLDeleteValues(&policy_bundle_);
108 } 108 }
109 109
110 } // namespace policy 110 } // namespace policy
OLDNEW
« no previous file with comments | « components/policy/core/common/config_dir_policy_loader.cc ('k') | components/policy/core/common/policy_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698