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

Unified Diff: content/renderer/render_view_impl.h

Issue 10917167: Refactor the P2PSocketDispatcher to be created on the RenderThread instead of the RenderView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 8 years, 3 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
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 65fc6a598e3ab12ea670f2599e5610f506bb2243..68cab35be20189368e54ebb2ae7a09a835f529a1 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -98,7 +98,6 @@ class WebUIBindings;
namespace content {
class DocumentState;
class NavigationState;
-class P2PSocketDispatcher;
class RenderViewObserver;
class RenderViewTest;
class RendererAccessibility;
@@ -257,11 +256,6 @@ class RenderViewImpl : public RenderWidget,
return media_stream_dispatcher_;
}
- // Current P2PSocketDispatcher. Set to NULL if P2P API is disabled.
- content::P2PSocketDispatcher* p2p_socket_dispatcher() {
- return p2p_socket_dispatcher_;
- }
-
MouseLockDispatcher* mouse_lock_dispatcher() {
return mouse_lock_dispatcher_;
}
@@ -1390,9 +1384,6 @@ class RenderViewImpl : public RenderWidget,
// MediaStreamImpl attached to this view; lazily initialized.
MediaStreamImpl* media_stream_impl_;
- // Dispatches all P2P socket used by the renderer.
- content::P2PSocketDispatcher* p2p_socket_dispatcher_;
-
DevToolsAgent* devtools_agent_;
// The current accessibility mode.
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698