OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/browser/browser.h" | 5 #include "chrome/browser/browser.h" |
6 #include "chrome/browser/download/download_manager.h" | 6 #include "chrome/browser/download/download_manager.h" |
| 7 #include "chrome/browser/extensions/extension_error_reporter.h" |
7 #include "chrome/browser/profile.h" | 8 #include "chrome/browser/profile.h" |
8 #include "chrome/browser/renderer_host/site_instance.h" | 9 #include "chrome/browser/renderer_host/site_instance.h" |
9 #include "chrome/browser/tab_contents/tab_contents.h" | 10 #include "chrome/browser/tab_contents/tab_contents.h" |
10 #include "chrome/common/chrome_paths.h" | 11 #include "chrome/common/chrome_paths.h" |
11 #include "chrome/common/chrome_switches.h" | 12 #include "chrome/common/chrome_switches.h" |
12 #include "chrome/common/notification_details.h" | 13 #include "chrome/common/notification_details.h" |
13 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
14 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
15 #include "chrome/common/notification_service.h" | 16 #include "chrome/common/notification_service.h" |
16 #include "chrome/common/notification_type.h" | 17 #include "chrome/common/notification_type.h" |
17 #include "chrome/common/extensions/extension_error_reporter.h" | |
18 #include "chrome/test/in_process_browser_test.h" | 18 #include "chrome/test/in_process_browser_test.h" |
19 #include "chrome/test/ui_test_utils.h" | 19 #include "chrome/test/ui_test_utils.h" |
20 #include "net/base/net_util.h" | 20 #include "net/base/net_util.h" |
21 | 21 |
22 class RenderViewHostManagerTest : public InProcessBrowserTest { | 22 class RenderViewHostManagerTest : public InProcessBrowserTest { |
23 public: | 23 public: |
24 RenderViewHostManagerTest() { | 24 RenderViewHostManagerTest() { |
25 EnableDOMAutomation(); | 25 EnableDOMAutomation(); |
26 } | 26 } |
27 }; | 27 }; |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 &result)); | 232 &result)); |
233 EXPECT_TRUE(result); | 233 EXPECT_TRUE(result); |
234 ui_test_utils::NavigateToURL(browser(), zip_url); | 234 ui_test_utils::NavigateToURL(browser(), zip_url); |
235 | 235 |
236 ui_test_utils::WaitForDownloadCount( | 236 ui_test_utils::WaitForDownloadCount( |
237 browser()->profile()->GetDownloadManager(), 1); | 237 browser()->profile()->GetDownloadManager(), 1); |
238 | 238 |
239 browser()->CloseWindow(); | 239 browser()->CloseWindow(); |
240 BrowserClosedObserver wait_for_close(browser()); | 240 BrowserClosedObserver wait_for_close(browser()); |
241 } | 241 } |
OLD | NEW |