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/android/media_url_demuxer.h" | 5 #include "media/base/android/media_url_demuxer.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 | 8 |
9 namespace media { | 9 namespace media { |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 return base::TimeDelta(); | 57 return base::TimeDelta(); |
58 } | 58 } |
59 base::Time MediaUrlDemuxer::GetTimelineOffset() const { | 59 base::Time MediaUrlDemuxer::GetTimelineOffset() const { |
60 return base::Time(); | 60 return base::Time(); |
61 } | 61 } |
62 | 62 |
63 int64_t MediaUrlDemuxer::GetMemoryUsage() const { | 63 int64_t MediaUrlDemuxer::GetMemoryUsage() const { |
64 return 0; | 64 return 0; |
65 } | 65 } |
66 | 66 |
| 67 void MediaUrlDemuxer::OnEnabledAudioTracksChanged( |
| 68 const std::vector<MediaTrack::Id>& track_ids, |
| 69 base::TimeDelta currTime) { |
| 70 NOTIMPLEMENTED(); |
| 71 } |
| 72 void MediaUrlDemuxer::OnSelectedVideoTrackChanged( |
| 73 const std::vector<MediaTrack::Id>& track_ids, |
| 74 base::TimeDelta currTime) { |
| 75 NOTIMPLEMENTED(); |
| 76 } |
| 77 |
67 } // namespace media | 78 } // namespace media |
OLD | NEW |