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 | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 | 10 |
12 class NotificationServiceImpl; | 11 class NotificationServiceImpl; |
13 | 12 |
14 namespace content { | 13 namespace content { |
15 | 14 |
16 class ContentClient; | 15 class ContentClient; |
17 class MockRenderProcessHostFactory; | 16 class MockRenderProcessHostFactory; |
(...skipping 19 matching lines...) Expand all Loading... |
37 scoped_ptr<TestContentBrowserClient> content_browser_client_; | 36 scoped_ptr<TestContentBrowserClient> content_browser_client_; |
38 scoped_ptr<content::MockRenderProcessHostFactory> rph_factory_; | 37 scoped_ptr<content::MockRenderProcessHostFactory> rph_factory_; |
39 scoped_ptr<TestRenderViewHostFactory> test_render_view_host_factory_; | 38 scoped_ptr<TestRenderViewHostFactory> test_render_view_host_factory_; |
40 | 39 |
41 DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer); | 40 DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer); |
42 }; | 41 }; |
43 | 42 |
44 } // namespace content | 43 } // namespace content |
45 | 44 |
46 #endif // CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ | 45 #endif // CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_ |
OLD | NEW |