OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 // It is not possible to do so here because the subclass destructor will | 22 // It is not possible to do so here because the subclass destructor will |
23 // already have run. | 23 // already have run. |
24 | 24 |
25 #ifndef WEBRTC_P2P_BASE_TRANSPORT_H_ | 25 #ifndef WEBRTC_P2P_BASE_TRANSPORT_H_ |
26 #define WEBRTC_P2P_BASE_TRANSPORT_H_ | 26 #define WEBRTC_P2P_BASE_TRANSPORT_H_ |
27 | 27 |
28 #include <map> | 28 #include <map> |
29 #include <string> | 29 #include <string> |
30 #include <vector> | 30 #include <vector> |
31 #include "webrtc/p2p/base/candidate.h" | 31 #include "webrtc/p2p/base/candidate.h" |
32 #include "webrtc/p2p/base/constants.h" | 32 #include "webrtc/p2p/base/p2pconstants.h" |
33 #include "webrtc/p2p/base/sessiondescription.h" | 33 #include "webrtc/p2p/base/sessiondescription.h" |
34 #include "webrtc/p2p/base/transportinfo.h" | 34 #include "webrtc/p2p/base/transportinfo.h" |
35 #include "webrtc/base/messagequeue.h" | 35 #include "webrtc/base/messagequeue.h" |
36 #include "webrtc/base/rtccertificate.h" | 36 #include "webrtc/base/rtccertificate.h" |
37 #include "webrtc/base/sigslot.h" | 37 #include "webrtc/base/sigslot.h" |
38 #include "webrtc/base/sslstreamadapter.h" | 38 #include "webrtc/base/sslstreamadapter.h" |
39 | 39 |
40 namespace cricket { | 40 namespace cricket { |
41 | 41 |
42 class PortAllocator; | 42 class PortAllocator; |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 | 317 |
318 ChannelMap channels_; | 318 ChannelMap channels_; |
319 | 319 |
320 RTC_DISALLOW_COPY_AND_ASSIGN(Transport); | 320 RTC_DISALLOW_COPY_AND_ASSIGN(Transport); |
321 }; | 321 }; |
322 | 322 |
323 | 323 |
324 } // namespace cricket | 324 } // namespace cricket |
325 | 325 |
326 #endif // WEBRTC_P2P_BASE_TRANSPORT_H_ | 326 #endif // WEBRTC_P2P_BASE_TRANSPORT_H_ |
OLD | NEW |