| Index: remoting/client/ipc_host_resolver.h
|
| diff --git a/remoting/client/ipc_host_resolver.h b/remoting/client/ipc_host_resolver.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8bcb028e4e656bac275edb72e629f53b5da94462
|
| --- /dev/null
|
| +++ b/remoting/client/ipc_host_resolver.h
|
| @@ -0,0 +1,35 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef REMOTING_CLIENT_IPC_HOST_RESOLVER_H_
|
| +#define REMOTING_CLIENT_IPC_HOST_ADDRESS_RESOLVER_H_
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "remoting/jingle_glue/host_resolver.h"
|
| +
|
| +class P2PSocketDispatcher;
|
| +
|
| +namespace remoting {
|
| +
|
| +// Implementation of HostResolverFactory interface that works in
|
| +// renderer.
|
| +//
|
| +// TODO(sergeyu): Move this class to content/renderer/p2p after
|
| +// HostResolver interface is moved to libjingle.
|
| +class IpcHostResolverFactory : public HostResolverFactory {
|
| + public:
|
| + IpcHostResolverFactory(P2PSocketDispatcher* socket_dispatcher);
|
| + virtual ~IpcHostResolverFactory();
|
| +
|
| + virtual HostResolver* CreateHostResolver() OVERRIDE;
|
| +
|
| + private:
|
| + P2PSocketDispatcher* socket_dispatcher_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory);
|
| +};
|
| +
|
| +} // namespace remoting
|
| +
|
| +#endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_
|
|
|