Chromium Code Reviews

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

Issue 1766653002: Replace SetCapturer and SetCaptureDevice by SetSource. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Work-in-progress, after applying 1790633002. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/api/objc/RTCMediaStreamTrack.h
diff --git a/webrtc/api/objc/RTCMediaStreamTrack.h b/webrtc/api/objc/RTCMediaStreamTrack.h
index 78838439c79bb04fa03dd064bbc9c2f47f4cf19d..ee1ec7c67f2a00c1bc5866dd184f7fad84fc867c 100644
--- a/webrtc/api/objc/RTCMediaStreamTrack.h
+++ b/webrtc/api/objc/RTCMediaStreamTrack.h
@@ -15,10 +15,8 @@
* which include two more states than are in the W3C spec.
*/
typedef NS_ENUM(NSInteger, RTCMediaStreamTrackState) {
- RTCMediaStreamTrackStateInitializing,
RTCMediaStreamTrackStateLive,
- RTCMediaStreamTrackStateEnded,
- RTCMediaStreamTrackStateFailed,
+ RTCMediaStreamTrackStateEnded
};
NS_ASSUME_NONNULL_BEGIN

Powered by Google App Engine