Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: webrtc/p2p/base/udptransport.cc

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/p2p/base/udptransport.h ('k') | webrtc/p2p/base/udptransport_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/p2p/base/udptransport.h" 11 #include "webrtc/p2p/base/udptransport.h"
12 12
13 #include <string> 13 #include <string>
14 #include <utility> // For std::move. 14 #include <utility> // For std::move.
15 15
16 #include "webrtc/base/asyncudpsocket.h" 16 #include "webrtc/rtc_base/asyncpacketsocket.h"
17 #include "webrtc/base/asyncpacketsocket.h" 17 #include "webrtc/rtc_base/asyncudpsocket.h"
18 #include "webrtc/base/logging.h" 18 #include "webrtc/rtc_base/logging.h"
19 #include "webrtc/base/socketaddress.h" 19 #include "webrtc/rtc_base/socketaddress.h"
20 #include "webrtc/base/thread.h" 20 #include "webrtc/rtc_base/thread.h"
21 #include "webrtc/base/thread_checker.h" 21 #include "webrtc/rtc_base/thread_checker.h"
22 22
23 namespace cricket { 23 namespace cricket {
24 24
25 UdpTransport::UdpTransport(const std::string& transport_name, 25 UdpTransport::UdpTransport(const std::string& transport_name,
26 std::unique_ptr<rtc::AsyncPacketSocket> socket) 26 std::unique_ptr<rtc::AsyncPacketSocket> socket)
27 : transport_name_(transport_name), socket_(std::move(socket)) { 27 : transport_name_(transport_name), socket_(std::move(socket)) {
28 RTC_DCHECK(socket_); 28 RTC_DCHECK(socket_);
29 socket_->SignalReadPacket.connect(this, &UdpTransport::OnSocketReadPacket); 29 socket_->SignalReadPacket.connect(this, &UdpTransport::OnSocketReadPacket);
30 socket_->SignalSentPacket.connect(this, &UdpTransport::OnSocketSentPacket); 30 socket_->SignalSentPacket.connect(this, &UdpTransport::OnSocketSentPacket);
31 } 31 }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 SignalReadPacket(this, data, len, packet_time, 0); 95 SignalReadPacket(this, data, len, packet_time, 0);
96 } 96 }
97 97
98 void UdpTransport::OnSocketSentPacket(rtc::AsyncPacketSocket* socket, 98 void UdpTransport::OnSocketSentPacket(rtc::AsyncPacketSocket* socket,
99 const rtc::SentPacket& packet) { 99 const rtc::SentPacket& packet) {
100 RTC_DCHECK_EQ(socket_.get(), socket); 100 RTC_DCHECK_EQ(socket_.get(), socket);
101 SignalSentPacket(this, packet); 101 SignalSentPacket(this, packet);
102 } 102 }
103 103
104 } // namespace cricket 104 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/p2p/base/udptransport.h ('k') | webrtc/p2p/base/udptransport_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698