OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ | 11 #ifndef WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ |
12 #define WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ | 12 #define WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ |
13 | 13 |
14 #include <set> | 14 #include <set> |
15 #include <string> | 15 #include <string> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "webrtc/rtc_base/asyncinvoker.h" | 18 #include "webrtc/base/asyncinvoker.h" |
19 #include "webrtc/rtc_base/basictypes.h" | 19 #include "webrtc/base/basictypes.h" |
20 #include "webrtc/rtc_base/bytebuffer.h" | 20 #include "webrtc/base/bytebuffer.h" |
21 #include "webrtc/rtc_base/callback.h" | 21 #include "webrtc/base/callback.h" |
22 #include "webrtc/rtc_base/constructormagic.h" | 22 #include "webrtc/base/constructormagic.h" |
23 #include "webrtc/rtc_base/ipaddress.h" | 23 #include "webrtc/base/ipaddress.h" |
24 #include "webrtc/rtc_base/network.h" | 24 #include "webrtc/base/network.h" |
25 #include "webrtc/rtc_base/socketaddress.h" | 25 #include "webrtc/base/socketaddress.h" |
26 #include "webrtc/rtc_base/thread.h" | 26 #include "webrtc/base/thread.h" |
27 #include "webrtc/rtc_base/thread_checker.h" | 27 #include "webrtc/base/thread_checker.h" |
28 #include "webrtc/typedefs.h" | 28 #include "webrtc/typedefs.h" |
29 | 29 |
30 namespace rtc { | 30 namespace rtc { |
31 class AsyncPacketSocket; | 31 class AsyncPacketSocket; |
32 class PacketSocketFactory; | 32 class PacketSocketFactory; |
33 class Thread; | 33 class Thread; |
34 class NetworkManager; | 34 class NetworkManager; |
35 class AsyncResolverInterface; | 35 class AsyncResolverInterface; |
36 } // namespace rtc | 36 } // namespace rtc |
37 | 37 |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 ObserverAdapter observer_adapter_; | 247 ObserverAdapter observer_adapter_; |
248 | 248 |
249 rtc::NetworkManager::NetworkList networks_; | 249 rtc::NetworkManager::NetworkList networks_; |
250 | 250 |
251 RTC_DISALLOW_COPY_AND_ASSIGN(StunProber); | 251 RTC_DISALLOW_COPY_AND_ASSIGN(StunProber); |
252 }; | 252 }; |
253 | 253 |
254 } // namespace stunprober | 254 } // namespace stunprober |
255 | 255 |
256 #endif // WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ | 256 #endif // WEBRTC_P2P_STUNPROBER_STUNPROBER_H_ |
OLD | NEW |