Index: content/browser/renderer_host/render_process_host_impl.h |
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h |
index dff4959945281cd709f4a3fa39d3c055dd6f02f1..5bb2480212c88d2c4f890ebaa446d817601e4ec2 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.h |
+++ b/content/browser/renderer_host/render_process_host_impl.h |
@@ -31,6 +31,7 @@ class Size; |
} |
namespace content { |
+class DTLSIdentityServiceHost; |
class GpuMessageFilter; |
class PeerConnectionTrackerHost; |
class RendererMainThread; |
@@ -327,6 +328,10 @@ class CONTENT_EXPORT RenderProcessHostImpl |
// and PeerConnectionTracker in the renderer process. |
scoped_refptr<PeerConnectionTrackerHost> peer_connection_tracker_host_; |
+ // Forwards DTLS identity requests from renderer process to the |
+ // DTLSIdentityStore singleton. |
+ scoped_refptr<DTLSIdentityServiceHost> dtls_identity_service_host_; |
sky
2013/06/04 17:46:07
if defined(ENABLE_WEBRTC)?
jiayl
2013/06/04 20:23:10
Done.
|
+ |
DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
}; |