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

Side by Side Diff: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h

Issue 1986073004: Add ice_candidate_pool_size to Obj-C and Java RTCConfiguration. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Stylistic change. Created 4 years, 7 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/sdk/objc/Framework/Classes/RTCConfiguration.mm ('k') | no next file » | 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy; 76 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy;
77 @property(nonatomic, assign) 77 @property(nonatomic, assign)
78 RTCContinualGatheringPolicy continualGatheringPolicy; 78 RTCContinualGatheringPolicy continualGatheringPolicy;
79 @property(nonatomic, assign) int audioJitterBufferMaxPackets; 79 @property(nonatomic, assign) int audioJitterBufferMaxPackets;
80 @property(nonatomic, assign) int iceConnectionReceivingTimeout; 80 @property(nonatomic, assign) int iceConnectionReceivingTimeout;
81 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; 81 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval;
82 82
83 /** Key type used to generate SSL identity. Default is ECDSA. */ 83 /** Key type used to generate SSL identity. Default is ECDSA. */
84 @property(nonatomic, assign) RTCEncryptionKeyType keyType; 84 @property(nonatomic, assign) RTCEncryptionKeyType keyType;
85 85
86 /** ICE candidate pool size as defined in JSEP. Default is 0. */
87 @property(nonatomic, assign) int iceCandidatePoolSize;
88
86 - (instancetype)init NS_DESIGNATED_INITIALIZER; 89 - (instancetype)init NS_DESIGNATED_INITIALIZER;
87 90
88 @end 91 @end
89 92
90 NS_ASSUME_NONNULL_END 93 NS_ASSUME_NONNULL_END
OLDNEW
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698