Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 15969025: Generates the DTLS identity in browser process and returns it to render process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..bc1be233592cf649f3942bab856b2fdd2a098a13 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;
@@ -323,10 +324,16 @@ class CONTENT_EXPORT RenderProcessHostImpl
// renderer.
bool is_guest_;
+#if defined(ENABLE_WEBRTC)
// Forwards messages between WebRTCInternals in the browser process
// 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_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
};

Powered by Google App Engine
This is Rietveld 408576698