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

Side by Side Diff: webrtc/base/asyncudpsocket.cc

Issue 1920043002: Replace scoped_ptr with unique_ptr in webrtc/base/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 years, 8 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/base/asyncudpsocket.h ('k') | webrtc/base/asyncudpsocket_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 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
11 #include "webrtc/base/asyncudpsocket.h" 11 #include "webrtc/base/asyncudpsocket.h"
12 #include "webrtc/base/logging.h" 12 #include "webrtc/base/logging.h"
13 13
14 namespace rtc { 14 namespace rtc {
15 15
16 static const int BUF_SIZE = 64 * 1024; 16 static const int BUF_SIZE = 64 * 1024;
17 17
18 AsyncUDPSocket* AsyncUDPSocket::Create( 18 AsyncUDPSocket* AsyncUDPSocket::Create(
19 AsyncSocket* socket, 19 AsyncSocket* socket,
20 const SocketAddress& bind_address) { 20 const SocketAddress& bind_address) {
21 scoped_ptr<AsyncSocket> owned_socket(socket); 21 std::unique_ptr<AsyncSocket> owned_socket(socket);
22 if (socket->Bind(bind_address) < 0) { 22 if (socket->Bind(bind_address) < 0) {
23 LOG(LS_ERROR) << "Bind() failed with error " << socket->GetError(); 23 LOG(LS_ERROR) << "Bind() failed with error " << socket->GetError();
24 return NULL; 24 return NULL;
25 } 25 }
26 return new AsyncUDPSocket(owned_socket.release()); 26 return new AsyncUDPSocket(owned_socket.release());
27 } 27 }
28 28
29 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory, 29 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory,
30 const SocketAddress& bind_address) { 30 const SocketAddress& bind_address) {
31 AsyncSocket* socket = 31 AsyncSocket* socket =
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // If we did not, then we should resize our buffer to be large enough. 118 // If we did not, then we should resize our buffer to be large enough.
119 SignalReadPacket(this, buf_, static_cast<size_t>(len), remote_addr, 119 SignalReadPacket(this, buf_, static_cast<size_t>(len), remote_addr,
120 CreatePacketTime(0)); 120 CreatePacketTime(0));
121 } 121 }
122 122
123 void AsyncUDPSocket::OnWriteEvent(AsyncSocket* socket) { 123 void AsyncUDPSocket::OnWriteEvent(AsyncSocket* socket) {
124 SignalReadyToSend(this); 124 SignalReadyToSend(this);
125 } 125 }
126 126
127 } // namespace rtc 127 } // namespace rtc
OLDNEW
« no previous file with comments | « webrtc/base/asyncudpsocket.h ('k') | webrtc/base/asyncudpsocket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698