| 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 "content/public/test/test_content_client_initializer.h" | 5 #include "content/public/test/test_content_client_initializer.h" |
| 6 | 6 |
| 7 #include "content/browser/notification_service_impl.h" | 7 #include "content/browser/notification_service_impl.h" |
| 8 #include "content/public/common/content_client.h" | 8 #include "content/public/common/content_client.h" |
| 9 #include "content/public/test/mock_render_process_host.h" | 9 #include "content/public/test/mock_render_process_host.h" |
| 10 #include "content/test/test_content_browser_client.h" | 10 #include "content/test/test_content_browser_client.h" |
| 11 #include "content/test/test_content_client.h" | 11 #include "content/test/test_content_client.h" |
| 12 #include "content/test/test_render_view_host_factory.h" | 12 #include "content/test/test_render_view_host_factory.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 TestContentClientInitializer::TestContentClientInitializer() { | 16 TestContentClientInitializer::TestContentClientInitializer() { |
| 17 notification_service_.reset(new NotificationServiceImpl()); | 17 notification_service_.reset(new NotificationServiceImpl()); |
| 18 | 18 |
| 19 DCHECK(!GetContentClient()); | |
| 20 content_client_.reset(new TestContentClient); | 19 content_client_.reset(new TestContentClient); |
| 21 SetContentClient(content_client_.get()); | 20 SetContentClient(content_client_.get()); |
| 22 | 21 |
| 23 content_browser_client_.reset(new TestContentBrowserClient()); | 22 content_browser_client_.reset(new TestContentBrowserClient()); |
| 24 content_client_->set_browser_for_testing(content_browser_client_.get()); | 23 content::SetBrowserClientForTesting(content_browser_client_.get()); |
| 25 } | 24 } |
| 26 | 25 |
| 27 TestContentClientInitializer::~TestContentClientInitializer() { | 26 TestContentClientInitializer::~TestContentClientInitializer() { |
| 28 test_render_view_host_factory_.reset(); | 27 test_render_view_host_factory_.reset(); |
| 29 rph_factory_.reset(); | 28 rph_factory_.reset(); |
| 30 notification_service_.reset(); | 29 notification_service_.reset(); |
| 31 | 30 |
| 32 DCHECK_EQ(content_client_.get(), GetContentClient()); | |
| 33 SetContentClient(NULL); | 31 SetContentClient(NULL); |
| 34 content_client_.reset(); | 32 content_client_.reset(); |
| 35 | 33 |
| 36 content_browser_client_.reset(); | 34 content_browser_client_.reset(); |
| 37 } | 35 } |
| 38 | 36 |
| 39 void TestContentClientInitializer::CreateTestRenderViewHosts() { | 37 void TestContentClientInitializer::CreateTestRenderViewHosts() { |
| 40 #if !defined(OS_IOS) | 38 #if !defined(OS_IOS) |
| 41 rph_factory_.reset(new MockRenderProcessHostFactory()); | 39 rph_factory_.reset(new MockRenderProcessHostFactory()); |
| 42 test_render_view_host_factory_.reset( | 40 test_render_view_host_factory_.reset( |
| 43 new TestRenderViewHostFactory(rph_factory_.get())); | 41 new TestRenderViewHostFactory(rph_factory_.get())); |
| 44 #endif // OS_IOS | 42 #endif // OS_IOS |
| 45 } | 43 } |
| 46 | 44 |
| 47 } // namespace content | 45 } // namespace content |
| OLD | NEW |