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

Unified Diff: webrtc/api/objc/RTCConfiguration.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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/objc/RTCAudioTrack+Private.h ('k') | webrtc/api/objc/RTCConfiguration.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/objc/RTCConfiguration.h
diff --git a/webrtc/api/objc/RTCConfiguration.h b/webrtc/api/objc/RTCConfiguration.h
deleted file mode 100644
index 38ae88daffac1825ef452aa706eb882a18d8a838..0000000000000000000000000000000000000000
--- a/webrtc/api/objc/RTCConfiguration.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright 2015 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#import <Foundation/Foundation.h>
-
-#import "webrtc/base/objc/RTCMacros.h"
-
-@class RTCIceServer;
-
-/**
- * Represents the ice transport policy. This exposes the same states in C++,
- * which include one more state than what exists in the W3C spec.
- */
-typedef NS_ENUM(NSInteger, RTCIceTransportPolicy) {
- RTCIceTransportPolicyNone,
- RTCIceTransportPolicyRelay,
- RTCIceTransportPolicyNoHost,
- RTCIceTransportPolicyAll
-};
-
-/** Represents the bundle policy. */
-typedef NS_ENUM(NSInteger, RTCBundlePolicy) {
- RTCBundlePolicyBalanced,
- RTCBundlePolicyMaxCompat,
- RTCBundlePolicyMaxBundle
-};
-
-/** Represents the rtcp mux policy. */
-typedef NS_ENUM(NSInteger, RTCRtcpMuxPolicy) {
- RTCRtcpMuxPolicyNegotiate,
- RTCRtcpMuxPolicyRequire
-};
-
-/** Represents the tcp candidate policy. */
-typedef NS_ENUM(NSInteger, RTCTcpCandidatePolicy) {
- RTCTcpCandidatePolicyEnabled,
- RTCTcpCandidatePolicyDisabled
-};
-
-/** Represents the encryption key type. */
-typedef NS_ENUM(NSInteger, RTCEncryptionKeyType) {
- RTCEncryptionKeyTypeRSA,
- RTCEncryptionKeyTypeECDSA,
-};
-
-NS_ASSUME_NONNULL_BEGIN
-
-RTC_EXPORT
-@interface RTCConfiguration : NSObject
-
-/** An array of Ice Servers available to be used by ICE. */
-@property(nonatomic, copy) NSArray<RTCIceServer *> *iceServers;
-
-/** Which candidates the ICE agent is allowed to use. The W3C calls it
- * |iceTransportPolicy|, while in C++ it is called |type|. */
-@property(nonatomic, assign) RTCIceTransportPolicy iceTransportPolicy;
-
-/** The media-bundling policy to use when gathering ICE candidates. */
-@property(nonatomic, assign) RTCBundlePolicy bundlePolicy;
-
-/** The rtcp-mux policy to use when gathering ICE candidates. */
-@property(nonatomic, assign) RTCRtcpMuxPolicy rtcpMuxPolicy;
-@property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy;
-@property(nonatomic, assign) int audioJitterBufferMaxPackets;
-@property(nonatomic, assign) int iceConnectionReceivingTimeout;
-@property(nonatomic, assign) int iceBackupCandidatePairPingInterval;
-
-/** Key type used to generate SSL identity. Default is ECDSA. */
-@property(nonatomic, assign) RTCEncryptionKeyType keyType;
-
-- (instancetype)init NS_DESIGNATED_INITIALIZER;
-
-@end
-
-NS_ASSUME_NONNULL_END
« no previous file with comments | « webrtc/api/objc/RTCAudioTrack+Private.h ('k') | webrtc/api/objc/RTCConfiguration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698