Chromium Code Reviews| 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 |