| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 class AudioRendererHost; | 54 class AudioRendererHost; |
| 55 class ChildConnection; | 55 class ChildConnection; |
| 56 class InProcessChildThreadParams; | 56 class InProcessChildThreadParams; |
| 57 class MessagePortMessageFilter; | 57 class MessagePortMessageFilter; |
| 58 class NotificationMessageFilter; | 58 class NotificationMessageFilter; |
| 59 #if BUILDFLAG(ENABLE_WEBRTC) | 59 #if BUILDFLAG(ENABLE_WEBRTC) |
| 60 class P2PSocketDispatcherHost; | 60 class P2PSocketDispatcherHost; |
| 61 #endif | 61 #endif |
| 62 class PermissionServiceContext; | 62 class PermissionServiceContext; |
| 63 class PeerConnectionTrackerHost; | 63 class PeerConnectionTrackerHost; |
| 64 class RendererMainThread; | |
| 65 class RenderFrameMessageFilter; | 64 class RenderFrameMessageFilter; |
| 66 class RenderWidgetHelper; | 65 class RenderWidgetHelper; |
| 67 class RenderWidgetHost; | 66 class RenderWidgetHost; |
| 68 class ResourceMessageFilter; | 67 class ResourceMessageFilter; |
| 69 class StoragePartition; | 68 class StoragePartition; |
| 70 class StoragePartitionImpl; | 69 class StoragePartitionImpl; |
| 71 | 70 |
| 72 namespace mojom { | 71 namespace mojom { |
| 73 class StoragePartitionService; | 72 class StoragePartitionService; |
| 74 } // namespace mojom | 73 } // namespace mojom |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 instance_weak_factory_; | 587 instance_weak_factory_; |
| 589 | 588 |
| 590 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 589 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 591 | 590 |
| 592 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 591 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 593 }; | 592 }; |
| 594 | 593 |
| 595 } // namespace content | 594 } // namespace content |
| 596 | 595 |
| 597 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 596 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |