| Index: content/browser/web_contents/web_contents_impl_unittest.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl_unittest.cc b/content/browser/web_contents/web_contents_impl_unittest.cc
|
| index 70dcb07ddb39950f882c44416ca0f5e5d5c4d79b..72f7c4a5e3a44714e918ae7edcd86429ff791912 100644
|
| --- a/content/browser/web_contents/web_contents_impl_unittest.cc
|
| +++ b/content/browser/web_contents/web_contents_impl_unittest.cc
|
| @@ -236,28 +236,18 @@ class TestInterstitialPageStateGuard : public TestInterstitialPage::Delegate {
|
|
|
| class WebContentsImplTest : public RenderViewHostImplTestHarness {
|
| public:
|
| - WebContentsImplTest()
|
| - : ui_thread_(BrowserThread::UI, &message_loop_),
|
| - file_user_blocking_thread_(
|
| - BrowserThread::FILE_USER_BLOCKING, &message_loop_),
|
| - io_thread_(BrowserThread::IO, &message_loop_) {
|
| - }
|
| -
|
| virtual void SetUp() {
|
| RenderViewHostImplTestHarness::SetUp();
|
| WebUIControllerFactory::RegisterFactory(&factory_);
|
| }
|
|
|
| virtual void TearDown() {
|
| - RenderViewHostImplTestHarness::TearDown();
|
| WebUIControllerFactory::UnregisterFactoryForTesting(&factory_);
|
| + RenderViewHostImplTestHarness::TearDown();
|
| }
|
|
|
| private:
|
| WebContentsImplTestWebUIControllerFactory factory_;
|
| - TestBrowserThread ui_thread_;
|
| - TestBrowserThread file_user_blocking_thread_;
|
| - TestBrowserThread io_thread_;
|
| };
|
|
|
| class TestWebContentsObserver : public WebContentsObserver {
|
|
|