| 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 "chrome/test/base/browser_with_test_window_test.h" | 5 #include "chrome/test/base/browser_with_test_window_test.h" |
| 6 | 6 |
| 7 #include "chrome/browser/tabs/tab_strip_model.h" | 7 #include "chrome/browser/tabs/tab_strip_model.h" |
| 8 #include "chrome/browser/ui/browser_navigator.h" | 8 #include "chrome/browser/ui/browser_navigator.h" |
| 9 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 9 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 10 #include "chrome/common/render_messages.h" | 10 #include "chrome/common/render_messages.h" |
| 11 #include "chrome/test/base/testing_profile.h" | 11 #include "chrome/test/base/testing_profile.h" |
| 12 #include "content/public/browser/navigation_controller.h" | 12 #include "content/public/browser/navigation_controller.h" |
| 13 #include "content/public/browser/navigation_entry.h" | 13 #include "content/public/browser/navigation_entry.h" |
| 14 #include "content/public/browser/web_contents.h" | 14 #include "content/public/browser/web_contents.h" |
| 15 #include "content/public/common/page_transition_types.h" | 15 #include "content/public/common/page_transition_types.h" |
| 16 #include "content/test/test_renderer_host.h" | 16 #include "content/test/test_renderer_host.h" |
| 17 | 17 |
| 18 #if defined(USE_ASH) | |
| 19 #include "ui/aura/test/test_screen.h" | |
| 20 #endif | |
| 21 | |
| 22 #if defined(USE_AURA) | 18 #if defined(USE_AURA) |
| 23 #include "ui/aura/env.h" | 19 #include "ui/aura/env.h" |
| 24 #include "ui/aura/monitor_manager.h" | 20 #include "ui/aura/monitor_manager.h" |
| 25 #include "ui/aura/root_window.h" | 21 #include "ui/aura/root_window.h" |
| 26 #include "ui/aura/single_monitor_manager.h" | 22 #include "ui/aura/single_monitor_manager.h" |
| 27 #include "ui/aura/test/test_activation_client.h" | 23 #include "ui/aura/test/test_activation_client.h" |
| 24 #include "ui/aura/test/test_screen.h" |
| 28 #include "ui/aura/test/test_stacking_client.h" | 25 #include "ui/aura/test/test_stacking_client.h" |
| 26 #include "ui/gfx/screen.h" |
| 29 #endif | 27 #endif |
| 30 | 28 |
| 31 using content::BrowserThread; | 29 using content::BrowserThread; |
| 32 using content::NavigationController; | 30 using content::NavigationController; |
| 33 using content::RenderViewHost; | 31 using content::RenderViewHost; |
| 34 using content::RenderViewHostTester; | 32 using content::RenderViewHostTester; |
| 35 using content::WebContents; | 33 using content::WebContents; |
| 36 | 34 |
| 37 BrowserWithTestWindowTest::BrowserWithTestWindowTest() | 35 BrowserWithTestWindowTest::BrowserWithTestWindowTest() |
| 38 : ui_thread_(BrowserThread::UI, message_loop()), | 36 : ui_thread_(BrowserThread::UI, message_loop()), |
| 39 file_thread_(BrowserThread::FILE, message_loop()), | 37 file_thread_(BrowserThread::FILE, message_loop()), |
| 40 file_user_blocking_thread_( | 38 file_user_blocking_thread_( |
| 41 BrowserThread::FILE_USER_BLOCKING, message_loop()) { | 39 BrowserThread::FILE_USER_BLOCKING, message_loop()) { |
| 42 } | 40 } |
| 43 | 41 |
| 44 void BrowserWithTestWindowTest::SetUp() { | 42 void BrowserWithTestWindowTest::SetUp() { |
| 45 testing::Test::SetUp(); | 43 testing::Test::SetUp(); |
| 46 | 44 |
| 47 profile_.reset(CreateProfile()); | 45 profile_.reset(CreateProfile()); |
| 48 browser_.reset(new Browser(Browser::TYPE_TABBED, profile())); | 46 browser_.reset(new Browser(Browser::TYPE_TABBED, profile())); |
| 49 window_.reset(new TestBrowserWindow(browser())); | 47 window_.reset(new TestBrowserWindow(browser())); |
| 50 browser_->SetWindowForTesting(window_.get()); | 48 browser_->SetWindowForTesting(window_.get()); |
| 51 #if defined(USE_AURA) | 49 #if defined(USE_AURA) |
| 52 aura::Env::GetInstance()->SetMonitorManager(new aura::SingleMonitorManager); | 50 aura::Env::GetInstance()->SetMonitorManager(new aura::SingleMonitorManager); |
| 53 root_window_.reset(aura::MonitorManager::CreateRootWindowForPrimaryMonitor()); | 51 root_window_.reset(aura::MonitorManager::CreateRootWindowForPrimaryMonitor()); |
| 54 #if defined(USE_ASH) | |
| 55 gfx::Screen::SetInstance(new aura::TestScreen(root_window_.get())); | 52 gfx::Screen::SetInstance(new aura::TestScreen(root_window_.get())); |
| 56 #endif // USE_ASH | |
| 57 test_activation_client_.reset( | 53 test_activation_client_.reset( |
| 58 new aura::test::TestActivationClient(root_window_.get())); | 54 new aura::test::TestActivationClient(root_window_.get())); |
| 59 test_stacking_client_.reset( | 55 test_stacking_client_.reset( |
| 60 new aura::test::TestStackingClient(root_window_.get())); | 56 new aura::test::TestStackingClient(root_window_.get())); |
| 61 #endif // USE_AURA | 57 #endif // USE_AURA |
| 62 } | 58 } |
| 63 | 59 |
| 64 void BrowserWithTestWindowTest::TearDown() { | 60 void BrowserWithTestWindowTest::TearDown() { |
| 65 testing::Test::TearDown(); | 61 testing::Test::TearDown(); |
| 66 #if defined(USE_AURA) | 62 #if defined(USE_AURA) |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // Make sure we close all tabs, otherwise Browser isn't happy in its | 144 // Make sure we close all tabs, otherwise Browser isn't happy in its |
| 149 // destructor. | 145 // destructor. |
| 150 browser()->CloseAllTabs(); | 146 browser()->CloseAllTabs(); |
| 151 browser_.reset(NULL); | 147 browser_.reset(NULL); |
| 152 window_.reset(NULL); | 148 window_.reset(NULL); |
| 153 } | 149 } |
| 154 | 150 |
| 155 TestingProfile* BrowserWithTestWindowTest::CreateProfile() { | 151 TestingProfile* BrowserWithTestWindowTest::CreateProfile() { |
| 156 return new TestingProfile(); | 152 return new TestingProfile(); |
| 157 } | 153 } |
| OLD | NEW |