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

Side by Side Diff: webrtc/api/objc/RTCConfiguration+Private.h

Issue 1903663002: Build dynamic iOS SDK. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix test gyp 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/api/objc/RTCConfiguration.mm ('k') | webrtc/api/objc/RTCDataChannel.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #import "RTCConfiguration.h"
12
13 #include "webrtc/api/peerconnectioninterface.h"
14
15 NS_ASSUME_NONNULL_BEGIN
16
17 @interface RTCConfiguration ()
18
19 /**
20 * RTCConfiguration struct representation of this RTCConfiguration. This is
21 * needed to pass to the underlying C++ APIs.
22 */
23 @property(nonatomic, readonly)
24 webrtc::PeerConnectionInterface::RTCConfiguration nativeConfiguration;
25
26 + (webrtc::PeerConnectionInterface::IceTransportsType)
27 nativeTransportsTypeForTransportPolicy:(RTCIceTransportPolicy)policy;
28
29 + (RTCIceTransportPolicy)transportPolicyForTransportsType:
30 (webrtc::PeerConnectionInterface::IceTransportsType)nativeType;
31
32 + (NSString *)stringForTransportPolicy:(RTCIceTransportPolicy)policy;
33
34 + (webrtc::PeerConnectionInterface::BundlePolicy)nativeBundlePolicyForPolicy:
35 (RTCBundlePolicy)policy;
36
37 + (RTCBundlePolicy)bundlePolicyForNativePolicy:
38 (webrtc::PeerConnectionInterface::BundlePolicy)nativePolicy;
39
40 + (NSString *)stringForBundlePolicy:(RTCBundlePolicy)policy;
41
42 + (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativeRtcpMuxPolicyForPolicy:
43 (RTCRtcpMuxPolicy)policy;
44
45 + (RTCRtcpMuxPolicy)rtcpMuxPolicyForNativePolicy:
46 (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativePolicy;
47
48 + (NSString *)stringForRtcpMuxPolicy:(RTCRtcpMuxPolicy)policy;
49
50 + (webrtc::PeerConnectionInterface::TcpCandidatePolicy)
51 nativeTcpCandidatePolicyForPolicy:(RTCTcpCandidatePolicy)policy;
52
53 + (RTCTcpCandidatePolicy)tcpCandidatePolicyForNativePolicy:
54 (webrtc::PeerConnectionInterface::TcpCandidatePolicy)nativePolicy;
55
56 + (NSString *)stringForTcpCandidatePolicy:(RTCTcpCandidatePolicy)policy;
57
58 @end
59
60 NS_ASSUME_NONNULL_END
OLDNEW
« no previous file with comments | « webrtc/api/objc/RTCConfiguration.mm ('k') | webrtc/api/objc/RTCDataChannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698