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

Side by Side Diff: webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCConfiguration.mm

Issue 2862543002: Split iOS sdk in to separate targets (Closed)
Patch Set: Add required lib to metal target Created 3 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
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
11 #import "RTCConfiguration+Private.h" 11 #import "PeerConnection/RTCConfiguration+Private.h"
12 12
13 #include <memory> 13 #include <memory>
14 14
15 #import "RTCIceServer+Private.h" 15 #import "PeerConnection/RTCIceServer+Private.h"
16 #import "WebRTC/RTCLogging.h" 16 #import "WebRTC/RTCLogging.h"
17 17
18 #include "webrtc/base/rtccertificategenerator.h" 18 #include "webrtc/base/rtccertificategenerator.h"
19 #include "webrtc/base/sslidentity.h" 19 #include "webrtc/base/sslidentity.h"
20 20
21 @implementation RTCConfiguration 21 @implementation RTCConfiguration
22 22
23 @synthesize iceServers = _iceServers; 23 @synthesize iceServers = _iceServers;
24 @synthesize iceTransportPolicy = _iceTransportPolicy; 24 @synthesize iceTransportPolicy = _iceTransportPolicy;
25 @synthesize bundlePolicy = _bundlePolicy; 25 @synthesize bundlePolicy = _bundlePolicy;
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 (RTCEncryptionKeyType)keyType { 362 (RTCEncryptionKeyType)keyType {
363 switch (keyType) { 363 switch (keyType) {
364 case RTCEncryptionKeyTypeRSA: 364 case RTCEncryptionKeyTypeRSA:
365 return rtc::KT_RSA; 365 return rtc::KT_RSA;
366 case RTCEncryptionKeyTypeECDSA: 366 case RTCEncryptionKeyTypeECDSA:
367 return rtc::KT_ECDSA; 367 return rtc::KT_ECDSA;
368 } 368 }
369 } 369 }
370 370
371 @end 371 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698