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 "chrome/browser/extensions/api/storage/settings_frontend.h" |
| 8 #include "chrome/browser/extensions/api/storage/settings_namespace.h" |
| 9 #include "chrome/browser/extensions/api/storage/settings_sync_util.h" |
7 #include "chrome/browser/extensions/extension_apitest.h" | 10 #include "chrome/browser/extensions/extension_apitest.h" |
8 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
9 #include "chrome/browser/extensions/extension_test_message_listener.h" | 12 #include "chrome/browser/extensions/extension_test_message_listener.h" |
10 #include "chrome/browser/extensions/settings/settings_frontend.h" | |
11 #include "chrome/browser/extensions/settings/settings_namespace.h" | |
12 #include "chrome/browser/extensions/settings/settings_sync_util.h" | |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/ui/browser.h" | 14 #include "chrome/browser/ui/browser.h" |
15 #include "chrome/common/extensions/value_builder.h" | 15 #include "chrome/common/extensions/value_builder.h" |
16 #include "chrome/test/base/ui_test_utils.h" | 16 #include "chrome/test/base/ui_test_utils.h" |
17 #include "sync/api/sync_change.h" | 17 #include "sync/api/sync_change.h" |
18 #include "sync/api/sync_change_processor.h" | 18 #include "sync/api/sync_change_processor.h" |
19 #include "sync/api/sync_error_factory.h" | 19 #include "sync/api/sync_error_factory.h" |
20 #include "sync/api/sync_error_factory_mock.h" | 20 #include "sync/api/sync_error_factory_mock.h" |
21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
22 | 22 |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 SettingsFrontend* frontend = | 509 SettingsFrontend* frontend = |
510 browser()->profile()->GetExtensionService()->settings_frontend(); | 510 browser()->profile()->GetExtensionService()->settings_frontend(); |
511 frontend->DisableStorageForTesting(MANAGED); | 511 frontend->DisableStorageForTesting(MANAGED); |
512 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); | 512 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); |
513 // Now run the extension. | 513 // Now run the extension. |
514 ASSERT_TRUE(RunExtensionTest("settings/managed_storage_disabled")) | 514 ASSERT_TRUE(RunExtensionTest("settings/managed_storage_disabled")) |
515 << message_; | 515 << message_; |
516 } | 516 } |
517 | 517 |
518 } // namespace extensions | 518 } // namespace extensions |
OLD | NEW |