OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2016 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 #include "webrtc/api/quicdatachannel.h" | 11 #include "webrtc/pc/quicdatachannel.h" |
12 | 12 |
13 #include "webrtc/base/bind.h" | 13 #include "webrtc/base/bind.h" |
14 #include "webrtc/base/bytebuffer.h" | 14 #include "webrtc/base/bytebuffer.h" |
15 #include "webrtc/base/copyonwritebuffer.h" | 15 #include "webrtc/base/copyonwritebuffer.h" |
16 #include "webrtc/base/logging.h" | 16 #include "webrtc/base/logging.h" |
17 #include "webrtc/p2p/quic/quictransportchannel.h" | 17 #include "webrtc/p2p/quic/quictransportchannel.h" |
18 #include "webrtc/p2p/quic/reliablequicstream.h" | 18 #include "webrtc/p2p/quic/reliablequicstream.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 size_t QuicDataChannel::GetNumWriteBlockedStreams() const { | 388 size_t QuicDataChannel::GetNumWriteBlockedStreams() const { |
389 return write_blocked_quic_streams_.size(); | 389 return write_blocked_quic_streams_.size(); |
390 } | 390 } |
391 | 391 |
392 size_t QuicDataChannel::GetNumIncomingStreams() const { | 392 size_t QuicDataChannel::GetNumIncomingStreams() const { |
393 return incoming_quic_messages_.size(); | 393 return incoming_quic_messages_.size(); |
394 } | 394 } |
395 | 395 |
396 } // namespace webrtc | 396 } // namespace webrtc |
OLD | NEW |