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

Side by Side Diff: webrtc/api/objc/RTCDataChannel.h

Issue 1696673003: Tweaks for new Objective-C API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Don't use object subscripting Created 4 years, 9 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/api/objc/RTCConfiguration.mm ('k') | 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 * Copyright 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 * this returns an empty string. 86 * this returns an empty string.
87 */ 87 */
88 @property(nonatomic, readonly) NSString *protocol; 88 @property(nonatomic, readonly) NSString *protocol;
89 89
90 /** 90 /**
91 * Returns whether this data channel was negotiated by the application or not. 91 * Returns whether this data channel was negotiated by the application or not.
92 */ 92 */
93 @property(nonatomic, readonly) BOOL isNegotiated; 93 @property(nonatomic, readonly) BOOL isNegotiated;
94 94
95 /** The identifier for this data channel. */ 95 /** The identifier for this data channel. */
96 @property(nonatomic, readonly) int id; 96 @property(nonatomic, readonly) int channelId;
97 97
98 /** The state of the data channel. */ 98 /** The state of the data channel. */
99 @property(nonatomic, readonly) RTCDataChannelState readyState; 99 @property(nonatomic, readonly) RTCDataChannelState readyState;
100 100
101 /** 101 /**
102 * The number of bytes of application data that have been queued using 102 * The number of bytes of application data that have been queued using
103 * |sendData:| but that have not yet been transmitted to the network. 103 * |sendData:| but that have not yet been transmitted to the network.
104 */ 104 */
105 @property(nonatomic, readonly) uint64_t bufferedAmount; 105 @property(nonatomic, readonly) uint64_t bufferedAmount;
106 106
107 /** The delegate for this data channel. */ 107 /** The delegate for this data channel. */
108 @property(nonatomic, weak) id<RTCDataChannelDelegate> delegate; 108 @property(nonatomic, weak) id<RTCDataChannelDelegate> delegate;
109 109
110 - (instancetype)init NS_UNAVAILABLE; 110 - (instancetype)init NS_UNAVAILABLE;
111 111
112 /** Closes the data channel. */ 112 /** Closes the data channel. */
113 - (void)close; 113 - (void)close;
114 114
115 /** Attempt to send |data| on this data channel's underlying data transport. */ 115 /** Attempt to send |data| on this data channel's underlying data transport. */
116 - (BOOL)sendData:(RTCDataBuffer *)data; 116 - (BOOL)sendData:(RTCDataBuffer *)data;
117 117
118 @end 118 @end
119 119
120 NS_ASSUME_NONNULL_END 120 NS_ASSUME_NONNULL_END
OLDNEW
« no previous file with comments | « webrtc/api/objc/RTCConfiguration.mm ('k') | webrtc/api/objc/RTCDataChannel.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698