Chromium Code Reviews| 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_ADDRESS_RESOLVER_H_ | |
| 6 #define REMOTING_CLIENT_IPC_HOST_ADDRESS_RESOLVER_H_ | |
| 7 | |
| 8 #include "base/compiler_specific.h" | |
| 9 #include "remoting/jingle_glue/host_address_resolver.h" | |
| 10 | |
| 11 class P2PSocketDispatcher; | |
| 12 | |
| 13 namespace remoting { | |
| 14 | |
| 15 // Implementation of HostAddressResolver interface that uses IPC to | |
| 16 // resolve host addresses. | |
|
Wez
2011/08/08 23:07:59
nit: It uses a P2PSocketDispatcher, which uses IPC
Sergey Ulanov
2011/08/09 01:42:16
Done.
| |
| 17 // | |
| 18 // TODO(sergeyu): Move this class to content/renderer/p2p after | |
| 19 // HostAddressResolver is moved to libjingle. | |
|
Wez
2011/08/08 23:07:59
Is this not very specific to libjingle, i.e. it be
Sergey Ulanov
2011/08/09 01:42:16
This class depends on P2PSocketDispatcher and P2PS
| |
| 20 class IpcHostAddressResolver : public HostAddressResolver { | |
| 21 public: | |
| 22 IpcHostAddressResolver(P2PSocketDispatcher* socket_dispatcher); | |
| 23 virtual ~IpcHostAddressResolver() OVERRIDE; | |
| 24 | |
| 25 virtual HostAddressRequest* CreateRequest() OVERRIDE; | |
| 26 | |
| 27 private: | |
| 28 P2PSocketDispatcher* socket_dispatcher_; | |
| 29 | |
| 30 DISALLOW_COPY_AND_ASSIGN(IpcHostAddressResolver); | |
| 31 }; | |
| 32 | |
| 33 } // namespace remoting | |
| 34 | |
| 35 #endif // REMOTING_JINGLE_GLUE_HOST_ADDRESS_RESOLVER_H_ | |
| OLD | NEW |