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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view.cc ('k') | remoting/client/ipc_host_resolver.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 REMOTING_CLIENT_IPC_HOST_RESOLVER_H_ 5 #ifndef REMOTING_CLIENT_IPC_HOST_RESOLVER_H_
6 #define REMOTING_CLIENT_IPC_HOST_ADDRESS_RESOLVER_H_ 6 #define REMOTING_CLIENT_IPC_HOST_ADDRESS_RESOLVER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "remoting/jingle_glue/host_resolver.h" 9 #include "remoting/jingle_glue/host_resolver.h"
10 10
11 namespace content {
11 class P2PSocketDispatcher; 12 class P2PSocketDispatcher;
13 } // namespace content
12 14
13 namespace remoting { 15 namespace remoting {
14 16
15 // Implementation of HostResolverFactory interface that works in 17 // Implementation of HostResolverFactory interface that works in
16 // renderer. 18 // renderer.
17 // 19 //
18 // TODO(sergeyu): Move this class to content/renderer/p2p after 20 // TODO(sergeyu): Move this class to content/renderer/p2p after
19 // HostResolver interface is moved to libjingle. 21 // HostResolver interface is moved to libjingle.
20 class IpcHostResolverFactory : public HostResolverFactory { 22 class IpcHostResolverFactory : public HostResolverFactory {
21 public: 23 public:
22 IpcHostResolverFactory(P2PSocketDispatcher* socket_dispatcher); 24 IpcHostResolverFactory(content::P2PSocketDispatcher* socket_dispatcher);
23 virtual ~IpcHostResolverFactory(); 25 virtual ~IpcHostResolverFactory();
24 26
25 virtual HostResolver* CreateHostResolver() OVERRIDE; 27 virtual HostResolver* CreateHostResolver() OVERRIDE;
26 28
27 private: 29 private:
28 P2PSocketDispatcher* socket_dispatcher_; 30 content::P2PSocketDispatcher* socket_dispatcher_;
29 31
30 DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory); 32 DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory);
31 }; 33 };
32 34
33 } // namespace remoting 35 } // namespace remoting
34 36
35 #endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_ 37 #endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_
OLDNEW
« 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