OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/base/media_track.h" | 5 #include "media/base/media_track.h" |
6 | 6 |
7 namespace media { | 7 namespace media { |
8 | 8 |
9 MediaTrack::MediaTrack(Type type, | 9 MediaTrack::MediaTrack(Type type, |
10 const std::string& id, | 10 StreamParser::TrackId id, |
chcunningham
2016/06/03 18:23:15
reminder: rename to byteStreamTrackId
servolk
2016/06/09 00:12:42
Done.
| |
11 const std::string& kind, | 11 const std::string& kind, |
12 const std::string& label, | 12 const std::string& label, |
13 const std::string& lang) | 13 const std::string& lang) |
14 : type_(type), id_(id), kind_(kind), label_(label), language_(lang) {} | 14 : type_(type), id_(id), kind_(kind), label_(label), language_(lang) {} |
15 | 15 |
16 MediaTrack::~MediaTrack() {} | 16 MediaTrack::~MediaTrack() {} |
17 | 17 |
18 } // namespace media | 18 } // namespace media |
OLD | NEW |