Chromium Code Reviews| 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 #ifndef CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ | 5 #ifndef CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ |
| 6 #define CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ | 6 #define CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 | 11 |
| 12 class NotificationServiceImpl; | 12 class NotificationServiceImpl; |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 class ContentClient; | 16 class ContentClient; |
| 17 class MockContentBrowserClient; | 17 class MockContentBrowserClient; |
| 18 class MockRenderProcessHostFactory; | |
| 19 class TestRenderViewHostFactory; | |
| 18 | 20 |
| 19 // Initializes various objects needed to run unit tests that use content:: | 21 // Initializes various objects needed to run unit tests that use content:: |
| 20 // objects. Currently this includes setting up the notification service, | 22 // objects. Currently this includes setting up the notification service, |
| 21 // creating and setting the content client and the content browser client. | 23 // creating and setting the content client and the content browser client. |
| 22 class TestContentClientInitializer { | 24 class TestContentClientInitializer { |
| 23 public: | 25 public: |
| 24 TestContentClientInitializer(); | 26 TestContentClientInitializer(); |
| 25 ~TestContentClientInitializer(); | 27 ~TestContentClientInitializer(); |
| 26 | 28 |
| 29 // Enables switching RenderViewHost creation to use the test version instead | |
| 30 // of the real implementation. This will list throughout the lifetime of this | |
|
Avi (use Gerrit)
2012/06/04 14:26:51
s/list/last/
jam
2012/06/04 14:46:14
Done.
| |
| 31 // class. | |
| 32 void CreateTestRenderViewHosts(); | |
| 33 | |
| 27 private: | 34 private: |
| 28 scoped_ptr<NotificationServiceImpl> notification_service_; | 35 scoped_ptr<NotificationServiceImpl> notification_service_; |
| 29 scoped_ptr<ContentClient> content_client_; | 36 scoped_ptr<ContentClient> content_client_; |
| 30 scoped_ptr<MockContentBrowserClient> content_browser_client_; | 37 scoped_ptr<MockContentBrowserClient> content_browser_client_; |
| 38 scoped_ptr<content::MockRenderProcessHostFactory> rph_factory_; | |
| 39 scoped_ptr<TestRenderViewHostFactory> test_render_view_host_factory_; | |
| 31 | 40 |
| 32 DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer); | 41 DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer); |
| 33 }; | 42 }; |
| 34 | 43 |
| 35 } // namespace content | 44 } // namespace content |
| 36 | 45 |
| 37 #endif // CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ | 46 #endif // CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ |
| OLD | NEW |