summaryrefslogtreecommitdiffstats
path: root/remoting/jingle_glue/jingle_info_request.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-23 19:11:34 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-23 19:11:34 +0000
commit3623ef76ca3a58a41be3c8e2d76f3ac1e4b9a1b5 (patch)
tree2c9715ca0107d40d0ff9dda60a628bfa4bcaf5e3 /remoting/jingle_glue/jingle_info_request.h
parentb5e8df4db8d3f6d44d7cdcfc18b9e5381e968b95 (diff)
downloadchromium_src-3623ef76ca3a58a41be3c8e2d76f3ac1e4b9a1b5.zip
chromium_src-3623ef76ca3a58a41be3c8e2d76f3ac1e4b9a1b5.tar.gz
chromium_src-3623ef76ca3a58a41be3c8e2d76f3ac1e4b9a1b5.tar.bz2
Remove old sandboxing-related code.
1. Remove sandboxing code from JingleSessionManager 2. Remove custom port allocator used by chromoting. 3. Remove code for STUN server address resolution from JingleInfoRequest and HostResolver interface. BUG=None TEST=compiles. Review URL: http://codereview.chromium.org/7969019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue/jingle_info_request.h')
-rw-r--r--remoting/jingle_glue/jingle_info_request.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/remoting/jingle_glue/jingle_info_request.h b/remoting/jingle_glue/jingle_info_request.h
index df7552f..6d5bcf6 100644
--- a/remoting/jingle_glue/jingle_info_request.h
+++ b/remoting/jingle_glue/jingle_info_request.h
@@ -27,8 +27,6 @@ class SocketAddress;
namespace remoting {
class IqRequest;
-class HostResolver;
-class HostResolverFactory;
// JingleInfoRequest handles requesting STUN/Relay infromation from
// the Google Talk network. The query is made when Send() is
@@ -49,8 +47,7 @@ class JingleInfoRequest : public sigslot::has_slots<> {
const std::string&, const std::vector<std::string>&,
const std::vector<talk_base::SocketAddress>&)> OnJingleInfoCallback;
- explicit JingleInfoRequest(IqRequest* request,
- HostResolverFactory* host_resolver_factory);
+ explicit JingleInfoRequest(IqRequest* request);
virtual ~JingleInfoRequest();
void Send(const OnJingleInfoCallback& callback);
@@ -59,19 +56,10 @@ class JingleInfoRequest : public sigslot::has_slots<> {
struct PendingDnsRequest;
void OnResponse(const buzz::XmlElement* stanza);
- void OnStunAddressResponse(HostResolver* resolver,
- const talk_base::SocketAddress& address);
- HostResolverFactory* host_resolver_factory_;
scoped_ptr<IqRequest> request_;
OnJingleInfoCallback on_jingle_info_cb_;
- std::vector<std::string> relay_hosts_;
- std::vector<talk_base::SocketAddress> stun_hosts_;
- std::string relay_token_;
-
- std::set<HostResolver*> stun_dns_requests_;
-
DISALLOW_COPY_AND_ASSIGN(JingleInfoRequest);
};