Index: webrtc/api/objc/RTCIceCandidate+Private.h |
diff --git a/webrtc/api/objc/RTCIceCandidate+Private.h b/webrtc/api/objc/RTCIceCandidate+Private.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..feb3898e5d5a523f3989647aaf19300753c09e06 |
--- /dev/null |
+++ b/webrtc/api/objc/RTCIceCandidate+Private.h |
@@ -0,0 +1,35 @@ |
+/* |
+ * 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 "RTCIceCandidate.h" |
+ |
+#include "webrtc/base/scoped_ptr.h" |
tkchin_webrtc
2016/01/05 16:18:07
alphabetize
hjon
2016/01/05 18:34:17
Done.
|
+#include "talk/app/webrtc/jsep.h" |
+ |
+NS_ASSUME_NONNULL_BEGIN |
+ |
+@interface RTCIceCandidate () |
+ |
+/** |
+ * The native IceCandidateInterface representation of this RTCIceCandidate |
+ * object. This is needed to pass to the underlying C++ APIs. |
+ */ |
+@property(nonatomic, readonly) |
+ rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate; |
+ |
+/** |
+ * Initialize an RTCIceCandidate from a native IceCandidateInterface. No |
+ * ownership is taken of the native candidate. |
+ */ |
+- (instancetype)initWithCandidate:(webrtc::IceCandidateInterface *)candidate; |
tkchin_webrtc
2016/01/05 16:18:07
nit: maybe initWithNativeCandidate
hjon
2016/01/05 18:34:17
Done.
|
+ |
+@end |
+ |
+NS_ASSUME_NONNULL_END |