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_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 #if defined(OS_ANDROID) | 41 #if defined(OS_ANDROID) |
42 #include "content/browser/android/synchronous_compositor_browser_filter.h" | 42 #include "content/browser/android/synchronous_compositor_browser_filter.h" |
43 #endif | 43 #endif |
44 | 44 |
45 namespace base { | 45 namespace base { |
46 class CommandLine; | 46 class CommandLine; |
47 class MessageLoop; | 47 class MessageLoop; |
48 class SharedPersistentMemoryAllocator; | 48 class SharedPersistentMemoryAllocator; |
49 } | 49 } |
50 | 50 |
51 namespace gfx { | |
52 class Size; | |
53 } | |
54 | |
55 namespace IPC { | |
56 class ChannelMojoHost; | |
57 } | |
58 | |
59 namespace content { | 51 namespace content { |
60 class AudioInputRendererHost; | 52 class AudioInputRendererHost; |
61 class AudioRendererHost; | 53 class AudioRendererHost; |
62 class ChildConnection; | 54 class ChildConnection; |
63 class InProcessChildThreadParams; | 55 class InProcessChildThreadParams; |
64 class MessagePortMessageFilter; | 56 class MessagePortMessageFilter; |
65 class NotificationMessageFilter; | 57 class NotificationMessageFilter; |
66 #if defined(ENABLE_WEBRTC) | 58 #if defined(ENABLE_WEBRTC) |
67 class P2PSocketDispatcherHost; | 59 class P2PSocketDispatcherHost; |
68 #endif | 60 #endif |
69 class PermissionServiceContext; | 61 class PermissionServiceContext; |
70 class PeerConnectionTrackerHost; | 62 class PeerConnectionTrackerHost; |
71 class RendererMainThread; | 63 class RendererMainThread; |
72 class RenderFrameMessageFilter; | 64 class RenderFrameMessageFilter; |
73 class RenderWidgetHelper; | 65 class RenderWidgetHelper; |
74 class RenderWidgetHost; | 66 class RenderWidgetHost; |
75 class RenderWidgetHostImpl; | |
76 class RenderWidgetHostViewFrameSubscriber; | |
77 class ResourceMessageFilter; | 67 class ResourceMessageFilter; |
78 class StoragePartition; | 68 class StoragePartition; |
79 class StoragePartitionImpl; | 69 class StoragePartitionImpl; |
80 | 70 |
81 namespace mojom { | 71 namespace mojom { |
82 class StoragePartitionService; | 72 class StoragePartitionService; |
83 } // namespace mojom | 73 } // namespace mojom |
84 | 74 |
85 typedef base::Thread* (*RendererMainThreadFactoryFunction)( | 75 typedef base::Thread* (*RendererMainThreadFactoryFunction)( |
86 const InProcessChildThreadParams& params); | 76 const InProcessChildThreadParams& params); |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 instance_weak_factory_; | 587 instance_weak_factory_; |
598 | 588 |
599 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 589 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
600 | 590 |
601 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 591 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
602 }; | 592 }; |
603 | 593 |
604 } // namespace content | 594 } // namespace content |
605 | 595 |
606 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 596 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |