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/bind.h" | 5 #include "base/bind.h" |
6 #include "base/json/json_writer.h" | 6 #include "base/json/json_writer.h" |
7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "chrome/browser/extensions/api/storage/settings_frontend.h" | 10 #include "chrome/browser/extensions/api/storage/settings_frontend.h" |
11 #include "chrome/browser/extensions/api/storage/settings_namespace.h" | 11 #include "chrome/browser/extensions/api/storage/settings_namespace.h" |
12 #include "chrome/browser/extensions/api/storage/settings_sync_util.h" | 12 #include "chrome/browser/extensions/api/storage/settings_sync_util.h" |
13 #include "chrome/browser/extensions/extension_apitest.h" | 13 #include "chrome/browser/extensions/extension_apitest.h" |
14 #include "chrome/browser/extensions/extension_service.h" | 14 #include "chrome/browser/extensions/extension_service.h" |
15 #include "chrome/browser/extensions/extension_system.h" | 15 #include "chrome/browser/extensions/extension_system.h" |
16 #include "chrome/browser/extensions/extension_system_factory.h" | 16 #include "chrome/browser/extensions/extension_system_factory.h" |
17 #include "chrome/browser/extensions/extension_test_message_listener.h" | 17 #include "chrome/browser/extensions/extension_test_message_listener.h" |
18 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
20 #include "chrome/test/base/ui_test_utils.h" | 20 #include "chrome/test/base/ui_test_utils.h" |
21 #include "extensions/common/value_builder.h" | 21 #include "extensions/common/value_builder.h" |
22 #include "sync/api/sync_change.h" | 22 #include "sync/api/sync_change.h" |
23 #include "sync/api/sync_change_processor.h" | 23 #include "sync/api/sync_change_processor.h" |
24 #include "sync/api/sync_error_factory.h" | 24 #include "sync/api/sync_error_factory.h" |
25 #include "sync/api/sync_error_factory_mock.h" | 25 #include "sync/api/sync_error_factory_mock.h" |
26 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
27 | 27 |
28 #if defined(ENABLE_CONFIGURATION_POLICY) | 28 #if defined(ENABLE_CONFIGURATION_POLICY) |
29 #include "chrome/browser/policy/browser_policy_connector.h" | 29 #include "chrome/browser/policy/browser_policy_connector.h" |
30 #include "chrome/browser/policy/mock_configuration_policy_provider.h" | |
31 #include "chrome/browser/policy/schema_registry_service.h" | 30 #include "chrome/browser/policy/schema_registry_service.h" |
32 #include "chrome/browser/policy/schema_registry_service_factory.h" | 31 #include "chrome/browser/policy/schema_registry_service_factory.h" |
| 32 #include "components/policy/core/common/mock_configuration_policy_provider.h" |
33 #include "components/policy/core/common/policy_bundle.h" | 33 #include "components/policy/core/common/policy_bundle.h" |
34 #include "components/policy/core/common/policy_map.h" | 34 #include "components/policy/core/common/policy_map.h" |
35 #include "components/policy/core/common/policy_namespace.h" | 35 #include "components/policy/core/common/policy_namespace.h" |
36 #include "components/policy/core/common/schema.h" | 36 #include "components/policy/core/common/schema.h" |
37 #include "components/policy/core/common/schema_map.h" | 37 #include "components/policy/core/common/schema_map.h" |
38 #include "components/policy/core/common/schema_registry.h" | 38 #include "components/policy/core/common/schema_registry.h" |
39 #endif | 39 #endif |
40 | 40 |
41 namespace extensions { | 41 namespace extensions { |
42 | 42 |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 SettingsFrontend* frontend = | 615 SettingsFrontend* frontend = |
616 browser()->profile()->GetExtensionService()->settings_frontend(); | 616 browser()->profile()->GetExtensionService()->settings_frontend(); |
617 frontend->DisableStorageForTesting(MANAGED); | 617 frontend->DisableStorageForTesting(MANAGED); |
618 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); | 618 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); |
619 // Now run the extension. | 619 // Now run the extension. |
620 ASSERT_TRUE(RunExtensionTest("settings/managed_storage_disabled")) | 620 ASSERT_TRUE(RunExtensionTest("settings/managed_storage_disabled")) |
621 << message_; | 621 << message_; |
622 } | 622 } |
623 | 623 |
624 } // namespace extensions | 624 } // namespace extensions |
OLD | NEW |