blob: d74ae2bda20813c11ec244ab055d9cf9c04d5dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// 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_JINGLE_GLUE_HOST_RESOLVER_H_
#define REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_
#include <string>
#include "base/basictypes.h"
#include "third_party/libjingle/source/talk/base/sigslot.h"
#include "third_party/libjingle/source/talk/base/socketaddress.h"
namespace remoting {
// TODO(sergeyu): Move HostResolver and HostResolverFactory to
// libjingle and use them in StunPort.
class HostResolver {
public:
HostResolver();
virtual ~HostResolver();
virtual void Resolve(const talk_base::SocketAddress& address) = 0;
sigslot::signal2<HostResolver*, const talk_base::SocketAddress&> SignalDone;
private:
DISALLOW_COPY_AND_ASSIGN(HostResolver);
};
class HostResolverFactory {
public:
HostResolverFactory() { }
virtual ~HostResolverFactory() { }
virtual HostResolver* CreateHostResolver() = 0;
private:
DISALLOW_COPY_AND_ASSIGN(HostResolverFactory);
};
} // namespace remoting
#endif // REMOTING_JINGLE_GLUE_HOST_RESOLVER_H_
|