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

Side by Side 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 unified diff | Download patch
OLDNEW
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
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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
326 // Forwards messages between WebRTCInternals in the browser process 327 // Forwards messages between WebRTCInternals in the browser process
327 // and PeerConnectionTracker in the renderer process. 328 // and PeerConnectionTracker in the renderer process.
328 scoped_refptr<PeerConnectionTrackerHost> peer_connection_tracker_host_; 329 scoped_refptr<PeerConnectionTrackerHost> peer_connection_tracker_host_;
329 330
331 // Forwards DTLS identity requests from renderer process to the
332 // DTLSIdentityStore singleton.
333 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.
334
330 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 335 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
331 }; 336 };
332 337
333 } // namespace content 338 } // namespace content
334 339
335 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 340 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698