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" | 14 #include "chrome/browser/extensions/extension_system.h" |
15 #include "chrome/browser/extensions/extension_util.h" | 15 #include "chrome/browser/extensions/extension_util.h" |
16 #include "chrome/browser/extensions/user_script_master.h" | 16 #include "chrome/browser/extensions/user_script_master.h" |
17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
19 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 19 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
20 #include "chrome/common/chrome_paths.h" | 20 #include "chrome/common/chrome_paths.h" |
21 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
22 #include "chrome/common/extensions/feature_switch.h" | |
23 #include "chrome/test/base/in_process_browser_test.h" | 22 #include "chrome/test/base/in_process_browser_test.h" |
24 #include "chrome/test/base/testing_profile.h" | 23 #include "chrome/test/base/testing_profile.h" |
25 #include "chrome/test/base/ui_test_utils.h" | 24 #include "chrome/test/base/ui_test_utils.h" |
26 #include "content/public/browser/notification_details.h" | 25 #include "content/public/browser/notification_details.h" |
27 #include "content/public/browser/notification_service.h" | 26 #include "content/public/browser/notification_service.h" |
28 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
29 #include "content/public/test/browser_test_utils.h" | 28 #include "content/public/test/browser_test_utils.h" |
| 29 #include "extensions/common/feature_switch.h" |
30 #include "net/base/net_util.h" | 30 #include "net/base/net_util.h" |
31 | 31 |
32 using extensions::FeatureSwitch; | 32 using extensions::FeatureSwitch; |
33 | 33 |
34 // This file contains high-level startup tests for the extensions system. We've | 34 // This file contains high-level startup tests for the extensions system. We've |
35 // had many silly bugs where command line flags did not get propagated correctly | 35 // had many silly bugs where command line flags did not get propagated correctly |
36 // into the services, so we didn't start correctly. | 36 // into the services, so we didn't start correctly. |
37 | 37 |
38 class ExtensionStartupTestBase : public InProcessBrowserTest { | 38 class ExtensionStartupTestBase : public InProcessBrowserTest { |
39 public: | 39 public: |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 .AppendASCII("extensions") | 269 .AppendASCII("extensions") |
270 .AppendASCII("app2"); | 270 .AppendASCII("app2"); |
271 load_extensions_.push_back(fourth_extension_path.value()); | 271 load_extensions_.push_back(fourth_extension_path.value()); |
272 } | 272 } |
273 }; | 273 }; |
274 | 274 |
275 IN_PROC_BROWSER_TEST_F(ExtensionsLoadMultipleTest, Test) { | 275 IN_PROC_BROWSER_TEST_F(ExtensionsLoadMultipleTest, Test) { |
276 WaitForServicesToStart(4, true); | 276 WaitForServicesToStart(4, true); |
277 TestInjection(true, true); | 277 TestInjection(true, true); |
278 } | 278 } |
OLD | NEW |