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: talk/app/webrtc/objc/RTCDataChannel.mm

Issue 1687833006: rtc::Buffer: Replace an internal rtc::scoped_ptr with std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | webrtc/api/objc/RTCDataChannel.mm » ('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 * libjingle 2 * libjingle
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 14 matching lines...) Expand all
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28 #if !defined(__has_feature) || !__has_feature(objc_arc) 28 #if !defined(__has_feature) || !__has_feature(objc_arc)
29 #error "This file requires ARC support." 29 #error "This file requires ARC support."
30 #endif 30 #endif
31 31
32 #import "RTCDataChannel+Internal.h" 32 #import "RTCDataChannel+Internal.h"
33 33
34 #include "webrtc/api/datachannelinterface.h" 34 #include "webrtc/api/datachannelinterface.h"
35 #include "webrtc/base/scoped_ptr.h"
35 36
36 namespace webrtc { 37 namespace webrtc {
37 38
38 class RTCDataChannelObserver : public DataChannelObserver { 39 class RTCDataChannelObserver : public DataChannelObserver {
39 public: 40 public:
40 RTCDataChannelObserver(RTCDataChannel* channel) { _channel = channel; } 41 RTCDataChannelObserver(RTCDataChannel* channel) { _channel = channel; }
41 42
42 void OnStateChange() override { 43 void OnStateChange() override {
43 [_channel.delegate channelDidChangeState:_channel]; 44 [_channel.delegate channelDidChangeState:_channel];
44 } 45 }
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 _observer.reset(new webrtc::RTCDataChannelObserver(self)); 282 _observer.reset(new webrtc::RTCDataChannelObserver(self));
282 } 283 }
283 return self; 284 return self;
284 } 285 }
285 286
286 - (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel { 287 - (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel {
287 return _dataChannel; 288 return _dataChannel;
288 } 289 }
289 290
290 @end 291 @end
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/objc/RTCDataChannel.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698