OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_value_serializer.h" |
| 8 #include "base/message_loop.h" |
8 #include "base/scoped_temp_dir.h" | 9 #include "base/scoped_temp_dir.h" |
9 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
10 #include "base/values.h" | 11 #include "base/values.h" |
11 #include "chrome/browser/policy/config_dir_policy_provider.h" | 12 #include "chrome/browser/policy/config_dir_policy_provider.h" |
12 #include "chrome/browser/policy/configuration_policy_provider_test.h" | 13 #include "chrome/browser/policy/configuration_policy_provider_test.h" |
13 | 14 |
14 namespace policy { | 15 namespace policy { |
15 | 16 |
16 namespace { | 17 namespace { |
17 | 18 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 for (unsigned int i = 5; i <= 8; ++i) | 164 for (unsigned int i = 5; i <= 8; ++i) |
164 harness_.WriteConfigFile(test_dict_bar, base::IntToString(i)); | 165 harness_.WriteConfigFile(test_dict_bar, base::IntToString(i)); |
165 | 166 |
166 ConfigDirPolicyProviderDelegate loader(harness_.test_dir()); | 167 ConfigDirPolicyProviderDelegate loader(harness_.test_dir()); |
167 scoped_ptr<base::DictionaryValue> policy(loader.Load()); | 168 scoped_ptr<base::DictionaryValue> policy(loader.Load()); |
168 EXPECT_TRUE(policy.get()); | 169 EXPECT_TRUE(policy.get()); |
169 EXPECT_TRUE(policy->Equals(&test_dict_foo)); | 170 EXPECT_TRUE(policy->Equals(&test_dict_foo)); |
170 } | 171 } |
171 | 172 |
172 } // namespace policy | 173 } // namespace policy |
OLD | NEW |