| OLD | NEW |
| 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 "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 { |
| 11 | 11 |
| 12 PolicyBundle::PolicyBundle() {} | 12 PolicyBundle::PolicyBundle() {} |
| 13 | 13 |
| 14 PolicyBundle::~PolicyBundle() { | 14 PolicyBundle::~PolicyBundle() { |
| 15 Clear(); | 15 Clear(); |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 STLDeleteValues(&policy_bundle_); |
| 108 } | 108 } |
| 109 | 109 |
| 110 } // namespace policy | 110 } // namespace policy |
| OLD | NEW |