summaryrefslogtreecommitdiffstats
path: root/remoting/client/ipc_host_resolver.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 18:13:59 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 18:13:59 +0000
commitc7f2ef7cee78dffc7fceea096ea482750b31fad1 (patch)
tree15662e81be035d101fed9e17ef16c56d0348c366 /remoting/client/ipc_host_resolver.h
parenta44c107ff7f62d2ba682b504345287ad244b695b (diff)
downloadchromium_src-c7f2ef7cee78dffc7fceea096ea482750b31fad1.zip
chromium_src-c7f2ef7cee78dffc7fceea096ea482750b31fad1.tar.gz
chromium_src-c7f2ef7cee78dffc7fceea096ea482750b31fad1.tar.bz2
Cleanup ConnectionToHost of non-P2P-API code.
BUG=74951 TEST=Compiles Review URL: http://codereview.chromium.org/7981026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/ipc_host_resolver.h')
-rw-r--r--remoting/client/ipc_host_resolver.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/remoting/client/ipc_host_resolver.h b/remoting/client/ipc_host_resolver.h
deleted file mode 100644
index 2cd5370..0000000
--- a/remoting/client/ipc_host_resolver.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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"
-
-namespace content {
-class P2PSocketDispatcher;
-} // namespace content
-
-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(content::P2PSocketDispatcher* socket_dispatcher);
- virtual ~IpcHostResolverFactory();
-
- virtual HostResolver* CreateHostResolver() OVERRIDE;
-
- private:
- content::P2PSocketDispatcher* socket_dispatcher_;
-
- DISALLOW_COPY_AND_ASSIGN(IpcHostResolverFactory);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_