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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "chrome/browser/chrome_notification_types.h" | 12 #include "chrome/browser/chrome_notification_types.h" |
13 #include "chrome/browser/extensions/extension_service.h" | 13 #include "chrome/browser/extensions/extension_service.h" |
14 #include "chrome/browser/extensions/extension_system.h" | |
15 #include "chrome/browser/extensions/extension_util.h" | 14 #include "chrome/browser/extensions/extension_util.h" |
16 #include "chrome/browser/extensions/user_script_master.h" | 15 #include "chrome/browser/extensions/user_script_master.h" |
17 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
18 #include "chrome/browser/ui/browser.h" | 17 #include "chrome/browser/ui/browser.h" |
19 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 18 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
20 #include "chrome/common/chrome_paths.h" | 19 #include "chrome/common/chrome_paths.h" |
21 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
22 #include "chrome/test/base/in_process_browser_test.h" | 21 #include "chrome/test/base/in_process_browser_test.h" |
23 #include "chrome/test/base/testing_profile.h" | 22 #include "chrome/test/base/testing_profile.h" |
24 #include "chrome/test/base/ui_test_utils.h" | 23 #include "chrome/test/base/ui_test_utils.h" |
25 #include "content/public/browser/notification_details.h" | 24 #include "content/public/browser/notification_details.h" |
26 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
27 #include "content/public/browser/web_contents.h" | 26 #include "content/public/browser/web_contents.h" |
28 #include "content/public/test/browser_test_utils.h" | 27 #include "content/public/test/browser_test_utils.h" |
29 #include "extensions/browser/extension_registry.h" | 28 #include "extensions/browser/extension_registry.h" |
| 29 #include "extensions/browser/extension_system.h" |
30 #include "extensions/common/extension.h" | 30 #include "extensions/common/extension.h" |
31 #include "extensions/common/extension_set.h" | 31 #include "extensions/common/extension_set.h" |
32 #include "extensions/common/feature_switch.h" | 32 #include "extensions/common/feature_switch.h" |
33 #include "net/base/net_util.h" | 33 #include "net/base/net_util.h" |
34 | 34 |
35 using extensions::FeatureSwitch; | 35 using extensions::FeatureSwitch; |
36 | 36 |
37 // This file contains high-level startup tests for the extensions system. We've | 37 // This file contains high-level startup tests for the extensions system. We've |
38 // had many silly bugs where command line flags did not get propagated correctly | 38 // had many silly bugs where command line flags did not get propagated correctly |
39 // into the services, so we didn't start correctly. | 39 // into the services, so we didn't start correctly. |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 .AppendASCII("extensions") | 276 .AppendASCII("extensions") |
277 .AppendASCII("app2"); | 277 .AppendASCII("app2"); |
278 load_extensions_.push_back(fourth_extension_path.value()); | 278 load_extensions_.push_back(fourth_extension_path.value()); |
279 } | 279 } |
280 }; | 280 }; |
281 | 281 |
282 IN_PROC_BROWSER_TEST_F(ExtensionsLoadMultipleTest, Test) { | 282 IN_PROC_BROWSER_TEST_F(ExtensionsLoadMultipleTest, Test) { |
283 WaitForServicesToStart(4, true); | 283 WaitForServicesToStart(4, true); |
284 TestInjection(true, true); | 284 TestInjection(true, true); |
285 } | 285 } |
OLD | NEW |