| 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/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "content/browser/web_contents/web_contents_impl.h" | 8 #include "content/browser/web_contents/web_contents_impl.h" |
| 9 #include "content/browser/renderer_host/test_render_view_host.h" | 9 #include "content/browser/renderer_host/test_render_view_host.h" |
| 10 #include "content/public/browser/browser_thread.h" | 10 #include "content/public/browser/browser_thread.h" |
| 11 #include "content/public/browser/web_contents_delegate.h" | 11 #include "content/public/browser/web_contents_delegate.h" |
| 12 #include "content/public/test/test_browser_context.h" | 12 #include "content/public/test/test_browser_context.h" |
| 13 #include "content/public/test/test_browser_thread.h" | 13 #include "content/public/test/test_browser_thread.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace content { |
| 17 | 17 |
| 18 class MockWebContentsDelegate : public content::WebContentsDelegate { | 18 class MockWebContentsDelegate : public WebContentsDelegate { |
| 19 public: | 19 public: |
| 20 virtual ~MockWebContentsDelegate() {} | 20 virtual ~MockWebContentsDelegate() {} |
| 21 }; | 21 }; |
| 22 | 22 |
| 23 class WebContentsDelegateTest : | 23 class WebContentsDelegateTest : public RenderViewHostImplTestHarness { |
| 24 public content::RenderViewHostImplTestHarness { | |
| 25 public: | 24 public: |
| 26 WebContentsDelegateTest() | 25 WebContentsDelegateTest() |
| 27 : file_user_blocking_thread_( | 26 : file_user_blocking_thread_( |
| 28 content::BrowserThread::FILE_USER_BLOCKING, &message_loop_), | 27 BrowserThread::FILE_USER_BLOCKING, &message_loop_), |
| 29 io_thread_(content::BrowserThread::IO, &message_loop_) { | 28 io_thread_(BrowserThread::IO, &message_loop_) { |
| 30 } | 29 } |
| 31 | 30 |
| 32 private: | 31 private: |
| 33 content::TestBrowserThread file_user_blocking_thread_; | 32 TestBrowserThread file_user_blocking_thread_; |
| 34 content::TestBrowserThread io_thread_; | 33 TestBrowserThread io_thread_; |
| 35 }; | 34 }; |
| 36 | 35 |
| 37 TEST_F(WebContentsDelegateTest, UnregisterInDestructor) { | 36 TEST_F(WebContentsDelegateTest, UnregisterInDestructor) { |
| 38 scoped_ptr<WebContentsImpl> contents_a( | 37 scoped_ptr<WebContentsImpl> contents_a( |
| 39 WebContentsImpl::Create(browser_context_.get(), NULL, MSG_ROUTING_NONE, | 38 WebContentsImpl::Create(browser_context_.get(), NULL, MSG_ROUTING_NONE, |
| 40 NULL)); | 39 NULL)); |
| 41 scoped_ptr<WebContentsImpl> contents_b( | 40 scoped_ptr<WebContentsImpl> contents_b( |
| 42 WebContentsImpl::Create(browser_context_.get(), NULL, MSG_ROUTING_NONE, | 41 WebContentsImpl::Create(browser_context_.get(), NULL, MSG_ROUTING_NONE, |
| 43 NULL)); | 42 NULL)); |
| 44 EXPECT_EQ(NULL, contents_a->GetDelegate()); | 43 EXPECT_EQ(NULL, contents_a->GetDelegate()); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 73 EXPECT_EQ(delegate.get(), contents_b->GetDelegate()); | 72 EXPECT_EQ(delegate.get(), contents_b->GetDelegate()); |
| 74 delegate.reset(NULL); | 73 delegate.reset(NULL); |
| 75 EXPECT_TRUE(contents_a->GetDelegate() == NULL); | 74 EXPECT_TRUE(contents_a->GetDelegate() == NULL); |
| 76 EXPECT_TRUE(contents_b->GetDelegate() == NULL); | 75 EXPECT_TRUE(contents_b->GetDelegate() == NULL); |
| 77 | 76 |
| 78 // Destroy the WebContentses and run the message loop to prevent leaks. | 77 // Destroy the WebContentses and run the message loop to prevent leaks. |
| 79 contents_a.reset(); | 78 contents_a.reset(); |
| 80 contents_b.reset(); | 79 contents_b.reset(); |
| 81 } | 80 } |
| 82 | 81 |
| 83 } // namespace | 82 } // namespace content |
| OLD | NEW |