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

Unified Diff: webrtc/api/mediastreaminterface.h

Issue 1790633002: Propagate MediaStreamSource state to video tracks the same way as audio. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@refactor_track
Patch Set: Fix bug with wrong enum values. Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/mediastream_unittest.cc ('k') | webrtc/api/mediastreamtrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/mediastreaminterface.h
diff --git a/webrtc/api/mediastreaminterface.h b/webrtc/api/mediastreaminterface.h
index 69a50c97a3311b0e3259be0ea638e932e33e47dc..a1ab675ab03adcc87c0872799f5c4bf5d2321e55 100644
--- a/webrtc/api/mediastreaminterface.h
+++ b/webrtc/api/mediastreaminterface.h
@@ -80,10 +80,8 @@ class MediaStreamTrackInterface : public rtc::RefCountInterface,
public NotifierInterface {
public:
enum TrackState {
- kInitializing, // Track is beeing negotiated.
- kLive = 1, // Track alive
- kEnded = 2, // Track have ended
- kFailed = 3, // Track negotiation failed.
+ kLive,
+ kEnded,
};
static const char kAudioKind[];
« no previous file with comments | « webrtc/api/mediastream_unittest.cc ('k') | webrtc/api/mediastreamtrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698