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/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/scoped_observer.h" | 6 #include "base/scoped_observer.h" |
7 #include "chrome/browser/chrome_notification_types.h" | 7 #include "chrome/browser/chrome_notification_types.h" |
8 #include "chrome/browser/extensions/extension_install_prompt.h" | 8 #include "chrome/browser/extensions/extension_install_prompt.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/extensions/startup_helper.h" | 10 #include "chrome/browser/extensions/startup_helper.h" |
11 #include "chrome/browser/extensions/webstore_installer_test.h" | 11 #include "chrome/browser/extensions/webstore_installer_test.h" |
12 #include "chrome/browser/infobars/infobar_service.h" | 12 #include "chrome/browser/infobars/infobar_service.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/browser/ui/tabs/tab_strip_model.h" | 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
16 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
17 #include "chrome/common/pref_names.h" | |
18 #include "chrome/test/base/in_process_browser_test.h" | 17 #include "chrome/test/base/in_process_browser_test.h" |
19 #include "chrome/test/base/test_switches.h" | 18 #include "chrome/test/base/test_switches.h" |
20 #include "chrome/test/base/ui_test_utils.h" | 19 #include "chrome/test/base/ui_test_utils.h" |
21 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
22 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
23 #include "content/public/browser/notification_types.h" | 22 #include "content/public/browser/notification_types.h" |
24 #include "content/public/browser/web_contents.h" | 23 #include "content/public/browser/web_contents.h" |
25 #include "content/public/test/browser_test_utils.h" | 24 #include "content/public/test/browser_test_utils.h" |
26 #include "extensions/browser/extension_host.h" | 25 #include "extensions/browser/extension_host.h" |
27 #include "extensions/browser/extension_registry.h" | 26 #include "extensions/browser/extension_registry.h" |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 292 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
294 command_line->AppendSwitchASCII( | 293 command_line->AppendSwitchASCII( |
295 switches::kInstallEphemeralAppFromWebstore, kTestExtensionId); | 294 switches::kInstallEphemeralAppFromWebstore, kTestExtensionId); |
296 ExtensionInstallPrompt::g_auto_confirm_for_tests = | 295 ExtensionInstallPrompt::g_auto_confirm_for_tests = |
297 ExtensionInstallPrompt::ACCEPT; | 296 ExtensionInstallPrompt::ACCEPT; |
298 extensions::StartupHelper helper; | 297 extensions::StartupHelper helper; |
299 EXPECT_FALSE(helper.InstallEphemeralApp(*command_line, browser()->profile())); | 298 EXPECT_FALSE(helper.InstallEphemeralApp(*command_line, browser()->profile())); |
300 EXPECT_FALSE(saw_install()); | 299 EXPECT_FALSE(saw_install()); |
301 EXPECT_EQ(0, browser_open_count()); | 300 EXPECT_EQ(0, browser_open_count()); |
302 } | 301 } |
OLD | NEW |