| 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_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class MessageLoop; | 26 class MessageLoop; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace gfx { | 29 namespace gfx { |
| 30 class Size; | 30 class Size; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace content { | 33 namespace content { |
| 34 class DTLSIdentityServiceHost; |
| 34 class GpuMessageFilter; | 35 class GpuMessageFilter; |
| 35 class PeerConnectionTrackerHost; | 36 class PeerConnectionTrackerHost; |
| 36 class RendererMainThread; | 37 class RendererMainThread; |
| 37 class RenderWidgetHelper; | 38 class RenderWidgetHelper; |
| 38 class RenderWidgetHost; | 39 class RenderWidgetHost; |
| 39 class RenderWidgetHostImpl; | 40 class RenderWidgetHostImpl; |
| 40 class RenderWidgetHostViewFrameSubscriber; | 41 class RenderWidgetHostViewFrameSubscriber; |
| 41 class StoragePartition; | 42 class StoragePartition; |
| 42 class StoragePartitionImpl; | 43 class StoragePartitionImpl; |
| 43 | 44 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 #endif | 317 #endif |
| 317 | 318 |
| 318 // Indicates whether this is a RenderProcessHost that has permission to embed | 319 // Indicates whether this is a RenderProcessHost that has permission to embed |
| 319 // Browser Plugins. | 320 // Browser Plugins. |
| 320 bool supports_browser_plugin_; | 321 bool supports_browser_plugin_; |
| 321 | 322 |
| 322 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest | 323 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest |
| 323 // renderer. | 324 // renderer. |
| 324 bool is_guest_; | 325 bool is_guest_; |
| 325 | 326 |
| 327 #if defined(ENABLE_WEBRTC) |
| 326 // Forwards messages between WebRTCInternals in the browser process | 328 // Forwards messages between WebRTCInternals in the browser process |
| 327 // and PeerConnectionTracker in the renderer process. | 329 // and PeerConnectionTracker in the renderer process. |
| 328 scoped_refptr<PeerConnectionTrackerHost> peer_connection_tracker_host_; | 330 scoped_refptr<PeerConnectionTrackerHost> peer_connection_tracker_host_; |
| 329 | 331 |
| 332 // Forwards DTLS identity requests from renderer process to the |
| 333 // DTLSIdentityStore singleton. |
| 334 scoped_refptr<DTLSIdentityServiceHost> dtls_identity_service_host_; |
| 335 #endif |
| 336 |
| 330 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 337 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 331 }; | 338 }; |
| 332 | 339 |
| 333 } // namespace content | 340 } // namespace content |
| 334 | 341 |
| 335 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 342 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |