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

Unified Diff: webrtc/api/objc/RTCMediaStreamTrack+Private.h

Issue 1527143002: Update API for Objective-C RTCMediaStreamTrack (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix build issues Created 5 years 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
Index: webrtc/api/objc/RTCMediaStreamTrack+Private.h
diff --git a/webrtc/api/objc/RTCMediaStreamTrack+Private.h b/webrtc/api/objc/RTCMediaStreamTrack+Private.h
new file mode 100644
index 0000000000000000000000000000000000000000..997c9a719af43c2540a5bd3fdce096f8da3005d7
--- /dev/null
+++ b/webrtc/api/objc/RTCMediaStreamTrack+Private.h
@@ -0,0 +1,44 @@
+/*
+ * 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 "RTCMediaStreamTrack.h"
+
+#include "talk/app/webrtc/mediastreaminterface.h"
+#include "webrtc/base/scoped_ptr.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RTCMediaStreamTrack ()
+
+/**
+ * The native MediaStreamTrackInterface representation of this
+ * RTCMediaStreamTrack object. This is needed to pass to the underlying C++
+ * APIs.
+ */
+@property(nonatomic, readonly)
+ rtc::scoped_refptr<webrtc::MediaStreamTrackInterface> nativeTrack;
+
+/**
+ * Initialize an RTCMediaStreamTrack from a native MediaStreamTrackInterface.
+ */
+- (instancetype)initWithTrack:
+ (rtc::scoped_refptr<webrtc::MediaStreamTrackInterface>)track;
tkchin_webrtc 2016/01/05 16:43:34 NS_DESIGNATED_INITIALIZER
hjon 2016/01/05 22:48:19 Done.
+
++ (webrtc::MediaStreamTrackInterface::TrackState)nativeTrackStateForObjCTrackState:
+ (RTCMediaStreamTrackState)state;
+
++ (RTCMediaStreamTrackState)objCTrackStateForNativeTrackState:
+ (webrtc::MediaStreamTrackInterface::TrackState)nativeState;
+
++ (NSString *)descriptionForObjCTrackState:(RTCMediaStreamTrackState)state;
+
+@end
+
+NS_ASSUME_NONNULL_END
« webrtc/api/objc/RTCMediaStreamTrack.mm ('K') | « webrtc/api/objc/RTCMediaStreamTrack.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698