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

Unified Diff: third_party/WebKit/public/platform/WebSourceBufferClient.h

Issue 2050043002: Generate and assign media track ids in demuxers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use-streamparser-trackid
Patch Set: Rebase Created 4 years, 6 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
Index: third_party/WebKit/public/platform/WebSourceBufferClient.h
diff --git a/third_party/WebKit/public/platform/WebSourceBufferClient.h b/third_party/WebKit/public/platform/WebSourceBufferClient.h
index 2b5066971832808aaa18fd28e05869053f472d1e..9b24067621ce977cdeb03b57392263d35f434222 100644
--- a/third_party/WebKit/public/platform/WebSourceBufferClient.h
+++ b/third_party/WebKit/public/platform/WebSourceBufferClient.h
@@ -15,10 +15,10 @@ class WebSourceBufferClient {
public:
virtual ~WebSourceBufferClient() { }
- // Complete media track info: track type, bytestream id, kind, label, language.
+ // Complete media track info: track type, unique track id, kind, label, language.
struct MediaTrackInfo {
WebMediaPlayer::TrackType trackType;
- WebString byteStreamTrackId;
+ WebString id;
chcunningham 2016/06/13 19:30:44 Why do you typedef WebString for webmediaplayer, b
servolk 2016/06/13 22:00:16 Done.
WebString kind;
WebString label;
WebString language;

Powered by Google App Engine
This is Rietveld 408576698