Index: content/renderer/render_view.h |
diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h |
index c628858a54c289d9cfb526959980b80db1bcee06..a40531b8c1dd380856d8a259df4f931e08a3b16c 100644 |
--- a/content/renderer/render_view.h |
+++ b/content/renderer/render_view.h |
@@ -63,7 +63,6 @@ class LoadProgressTracker; |
class MediaStreamImpl; |
class NavigationState; |
class NotificationProvider; |
-class P2PSocketDispatcher; |
class PepperDeviceTest; |
class PrintWebViewHelper; |
class RenderViewObserver; |
@@ -83,16 +82,20 @@ struct WebDropData; |
namespace base { |
class WaitableEvent; |
-} |
+} // namespace base |
+ |
+namespace content { |
+class P2PSocketDispatcher; |
+} // namespace content |
namespace chrome { |
class ChromeContentRendererClient; |
-} |
+} // namespace chrome |
namespace gfx { |
class Point; |
class Rect; |
-} |
+} // namespace gfx |
namespace webkit { |
@@ -237,7 +240,7 @@ class RenderView : public RenderWidget, |
const WebKit::WebNode& context_menu_node() { return context_menu_node_; } |
// Current P2PSocketDispatcher. Set to NULL if P2P API is disabled. |
- P2PSocketDispatcher* p2p_socket_dispatcher() { |
+ content::P2PSocketDispatcher* p2p_socket_dispatcher() { |
return p2p_socket_dispatcher_; |
} |
@@ -1167,7 +1170,7 @@ class RenderView : public RenderWidget, |
bool accessibility_ack_pending_; |
// Dispatches all P2P socket used by the renderer. |
- P2PSocketDispatcher* p2p_socket_dispatcher_; |
+ content::P2PSocketDispatcher* p2p_socket_dispatcher_; |
DevToolsAgent* devtools_agent_; |