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_map.h" | 5 #include "components/policy/core/common/policy_map.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "chrome/browser/policy/external_data_manager.h" | 9 #include "components/policy/core/common/external_data_manager.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 | 11 |
12 namespace policy { | 12 namespace policy { |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
16 // Dummy policy names. | 16 // Dummy policy names. |
17 const char kTestPolicyName1[] = "policy.test.1"; | 17 const char kTestPolicyName1[] = "policy.test.1"; |
18 const char kTestPolicyName2[] = "policy.test.2"; | 18 const char kTestPolicyName2[] = "policy.test.2"; |
19 const char kTestPolicyName3[] = "policy.test.3"; | 19 const char kTestPolicyName3[] = "policy.test.3"; |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 EXPECT_TRUE(diff.find(kTestPolicyName6) != diff.end()); | 280 EXPECT_TRUE(diff.find(kTestPolicyName6) != diff.end()); |
281 // Not in |a|. | 281 // Not in |a|. |
282 EXPECT_TRUE(diff.find(kTestPolicyName8) != diff.end()); | 282 EXPECT_TRUE(diff.find(kTestPolicyName8) != diff.end()); |
283 // Not in |b|. | 283 // Not in |b|. |
284 EXPECT_TRUE(diff.find(kTestPolicyName7) != diff.end()); | 284 EXPECT_TRUE(diff.find(kTestPolicyName7) != diff.end()); |
285 // No surprises. | 285 // No surprises. |
286 EXPECT_EQ(6u, diff.size()); | 286 EXPECT_EQ(6u, diff.size()); |
287 } | 287 } |
288 | 288 |
289 } // namespace policy | 289 } // namespace policy |
OLD | NEW |