Chromium Code Reviews| Index: content/renderer/media/webmediaplayer_impl.h |
| diff --git a/content/renderer/media/webmediaplayer_impl.h b/content/renderer/media/webmediaplayer_impl.h |
| index 5de76c17643879add91b6fa92c0c1cfd6a7dcc36..e014c93430310465ef91101a0bd1cdc2dc935f6e 100644 |
| --- a/content/renderer/media/webmediaplayer_impl.h |
| +++ b/content/renderer/media/webmediaplayer_impl.h |
| @@ -55,7 +55,6 @@ class MessageLoopProxy; |
| namespace media { |
| class ChunkDemuxer; |
| -class FFmpegDemuxer; |
| class GpuVideoAcceleratorFactories; |
| class MediaLog; |
| } |
| @@ -196,9 +195,11 @@ class WebMediaPlayerImpl |
| const std::string& default_url); |
| void OnNeedKey(const std::string& type, |
| const std::vector<uint8>& init_data); |
| - scoped_ptr<media::TextTrack> OnTextTrack(media::TextKind kind, |
| - const std::string& label, |
| - const std::string& language); |
| + void OnAddTextTrack(media::TextKind kind, |
| + const std::string& label, |
| + const std::string& language, |
|
acolwell GONE FROM CHROMIUM
2013/10/21 20:10:40
nit: Use const TextTrackConfig& here instead of th
Matthew Heaney (Chromium)
2013/10/23 05:09:01
Done.
|
| + const media::AddTextTrackDoneCB& done_cb); |
| + |
| void SetOpaque(bool); |
| private: |