| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef REMOTING_CLIENT_IPC_HOST_RESOLVER_H_ | |
| 6 #define REMOTING_CLIENT_IPC_HOST_ADDRESS_RESOLVER_H_ | |
| 7 | |
| 8 #include "base/compiler_specific.h" | |
| 9 #include "remoting/jingle_glue/host_resolver.h" | |
| 10 | |
| 11 namespace content { | |
| 12 class P2PSocketDispatcher; | |
| 13 } // namespace content | |
| 14 | |
| 15 namespace remoting { | |
| 16 | |
| 17 // Implementation of HostResolverFactory interface that works in | |
| 18 // renderer. | |
| 19 // | |
| 20 // TODO(sergeyu): Move this class to content/renderer/p2p after | |
| 21 // HostResolver interface is moved to libjingle. | |
| 22 class IpcHostResolverFactory : public HostResolverFactory { | |
| 23 public: | |
| 24 IpcHostResolverFactory(content::P2PSocketDispatcher* socket_dispatcher); | |
| 25 virtual ~IpcHostResolverFactory(); | |
| 26 | |
| 27 virtual HostResolver* CreateHostResolver() OVERRIDE; | |
| 28 | |
| 29 private: | |
| 30 content::P2PSocketDispatcher* socket_dispatcher_; | |
| 31 | |
| 32 DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory); | |
| 33 }; | |
| 34 | |
| 35 } // namespace remoting | |
| 36 | |
| 37 #endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_ | |
| OLD | NEW |