| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <UIKit/UIKit.h> | 5 #include <UIKit/UIKit.h> |
| 6 | 6 |
| 7 #include "base/basictypes.h" | |
| 8 #include "base/callback.h" | 7 #include "base/callback.h" |
| 9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| 11 #include "base/test/test_simple_task_runner.h" | 11 #include "base/test/test_simple_task_runner.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "components/policy/core/common/async_policy_provider.h" | 13 #include "components/policy/core/common/async_policy_provider.h" |
| 14 #include "components/policy/core/common/configuration_policy_provider_test.h" | 14 #include "components/policy/core/common/configuration_policy_provider_test.h" |
| 15 #include "components/policy/core/common/policy_bundle.h" | 15 #include "components/policy/core/common/policy_bundle.h" |
| 16 #include "components/policy/core/common/policy_loader_ios.h" | 16 #include "components/policy/core/common/policy_loader_ios.h" |
| 17 #include "components/policy/core/common/policy_map.h" | 17 #include "components/policy/core/common/policy_map.h" |
| 18 #include "components/policy/core/common/policy_test_utils.h" | 18 #include "components/policy/core/common/policy_test_utils.h" |
| 19 #include "components/policy/core/common/policy_types.h" | 19 #include "components/policy/core/common/policy_types.h" |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 scoped_refptr<base::TestSimpleTaskRunner> taskRunner = | 262 scoped_refptr<base::TestSimpleTaskRunner> taskRunner = |
| 263 new base::TestSimpleTaskRunner(); | 263 new base::TestSimpleTaskRunner(); |
| 264 PolicyLoaderIOS loader(taskRunner); | 264 PolicyLoaderIOS loader(taskRunner); |
| 265 scoped_ptr<PolicyBundle> bundle = loader.Load(); | 265 scoped_ptr<PolicyBundle> bundle = loader.Load(); |
| 266 ASSERT_TRUE(bundle); | 266 ASSERT_TRUE(bundle); |
| 267 EXPECT_TRUE(bundle->Equals(expected)); | 267 EXPECT_TRUE(bundle->Equals(expected)); |
| 268 } | 268 } |
| 269 | 269 |
| 270 } // namespace policy | 270 } // namespace policy |
| OLD | NEW |