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