| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ | 5 #ifndef MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ |
| 6 #define MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ | 6 #define MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "media/base/audio_decoder_config.h" | 10 #include "media/base/audio_decoder_config.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 ~FakeTextTrackStream() override; | 22 ~FakeTextTrackStream() override; |
| 23 | 23 |
| 24 // DemuxerStream implementation. | 24 // DemuxerStream implementation. |
| 25 void Read(const ReadCB&) override; | 25 void Read(const ReadCB&) override; |
| 26 MOCK_METHOD0(audio_decoder_config, AudioDecoderConfig()); | 26 MOCK_METHOD0(audio_decoder_config, AudioDecoderConfig()); |
| 27 MOCK_METHOD0(video_decoder_config, VideoDecoderConfig()); | 27 MOCK_METHOD0(video_decoder_config, VideoDecoderConfig()); |
| 28 Type type() const override; | 28 Type type() const override; |
| 29 MOCK_METHOD0(EnableBitstreamConverter, void()); | 29 MOCK_METHOD0(EnableBitstreamConverter, void()); |
| 30 bool SupportsConfigChanges() override; | 30 bool SupportsConfigChanges() override; |
| 31 VideoRotation video_rotation() override; | 31 VideoRotation video_rotation() override; |
| 32 bool enabled() const override; | |
| 33 void set_enabled(bool enabled, base::TimeDelta timestamp) override; | |
| 34 | 32 |
| 35 void SatisfyPendingRead(const base::TimeDelta& start, | 33 void SatisfyPendingRead(const base::TimeDelta& start, |
| 36 const base::TimeDelta& duration, | 34 const base::TimeDelta& duration, |
| 37 const std::string& id, | 35 const std::string& id, |
| 38 const std::string& content, | 36 const std::string& content, |
| 39 const std::string& settings); | 37 const std::string& settings); |
| 40 void AbortPendingRead(); | 38 void AbortPendingRead(); |
| 41 void SendEosNotification(); | 39 void SendEosNotification(); |
| 42 | 40 |
| 43 void Stop(); | 41 void Stop(); |
| 44 | 42 |
| 45 MOCK_METHOD0(OnRead, void()); | 43 MOCK_METHOD0(OnRead, void()); |
| 46 | 44 |
| 47 private: | 45 private: |
| 48 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 46 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 49 ReadCB read_cb_; | 47 ReadCB read_cb_; |
| 50 bool stopping_; | 48 bool stopping_; |
| 51 | 49 |
| 52 DISALLOW_COPY_AND_ASSIGN(FakeTextTrackStream); | 50 DISALLOW_COPY_AND_ASSIGN(FakeTextTrackStream); |
| 53 }; | 51 }; |
| 54 | 52 |
| 55 } // namespace media | 53 } // namespace media |
| 56 | 54 |
| 57 #endif // MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ | 55 #endif // MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ |
| OLD | NEW |