| 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/json/json_value_serializer.h" | 7 #include "base/json/json_string_value_serializer.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/scoped_temp_dir.h" | 9 #include "base/scoped_temp_dir.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "chrome/browser/policy/config_dir_policy_provider.h" | 12 #include "chrome/browser/policy/config_dir_policy_provider.h" |
| 13 #include "chrome/browser/policy/configuration_policy_provider_test.h" | 13 #include "chrome/browser/policy/configuration_policy_provider_test.h" |
| 14 | 14 |
| 15 namespace policy { | 15 namespace policy { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 POLICY_LEVEL_MANDATORY, | 175 POLICY_LEVEL_MANDATORY, |
| 176 POLICY_SCOPE_USER); | 176 POLICY_SCOPE_USER); |
| 177 scoped_ptr<PolicyMap> policy(loader.Load()); | 177 scoped_ptr<PolicyMap> policy(loader.Load()); |
| 178 EXPECT_TRUE(policy.get()); | 178 EXPECT_TRUE(policy.get()); |
| 179 PolicyMap expected; | 179 PolicyMap expected; |
| 180 expected.LoadFrom(&test_dict_foo, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER); | 180 expected.LoadFrom(&test_dict_foo, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER); |
| 181 EXPECT_TRUE(policy->Equals(expected)); | 181 EXPECT_TRUE(policy->Equals(expected)); |
| 182 } | 182 } |
| 183 | 183 |
| 184 } // namespace policy | 184 } // namespace policy |
| OLD | NEW |