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

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, 7 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..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);
};

Powered by Google App Engine
This is Rietveld 408576698