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

Unified Diff: remoting/client/ipc_host_resolver.h

Issue 7715020: Move P2P code to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 4 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_view.cc ('k') | remoting/client/ipc_host_resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ipc_host_resolver.h
diff --git a/remoting/client/ipc_host_resolver.h b/remoting/client/ipc_host_resolver.h
index 8bcb028e4e656bac275edb72e629f53b5da94462..2cd5370d84d9c58eebf34d8d9d9260b77024539d 100644
--- a/remoting/client/ipc_host_resolver.h
+++ b/remoting/client/ipc_host_resolver.h
@@ -8,7 +8,9 @@
#include "base/compiler_specific.h"
#include "remoting/jingle_glue/host_resolver.h"
+namespace content {
class P2PSocketDispatcher;
+} // namespace content
namespace remoting {
@@ -19,13 +21,13 @@ namespace remoting {
// HostResolver interface is moved to libjingle.
class IpcHostResolverFactory : public HostResolverFactory {
public:
- IpcHostResolverFactory(P2PSocketDispatcher* socket_dispatcher);
+ IpcHostResolverFactory(content::P2PSocketDispatcher* socket_dispatcher);
virtual ~IpcHostResolverFactory();
virtual HostResolver* CreateHostResolver() OVERRIDE;
private:
- P2PSocketDispatcher* socket_dispatcher_;
+ content::P2PSocketDispatcher* socket_dispatcher_;
DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory);
};
« no previous file with comments | « content/renderer/render_view.cc ('k') | remoting/client/ipc_host_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698