Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: media/base/fake_text_track_stream.h

Issue 1935873002: Implement disabling and enabling media tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@track-control2
Patch Set: rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/fake_demuxer_stream.cc ('k') | media/base/fake_text_track_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 void SetStreamRestartedCB(const StreamRestartedCB& cb) override;
32 35
33 void SatisfyPendingRead(const base::TimeDelta& start, 36 void SatisfyPendingRead(const base::TimeDelta& start,
34 const base::TimeDelta& duration, 37 const base::TimeDelta& duration,
35 const std::string& id, 38 const std::string& id,
36 const std::string& content, 39 const std::string& content,
37 const std::string& settings); 40 const std::string& settings);
38 void AbortPendingRead(); 41 void AbortPendingRead();
39 void SendEosNotification(); 42 void SendEosNotification();
40 43
41 void Stop(); 44 void Stop();
42 45
43 MOCK_METHOD0(OnRead, void()); 46 MOCK_METHOD0(OnRead, void());
44 47
45 private: 48 private:
46 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 49 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
47 ReadCB read_cb_; 50 ReadCB read_cb_;
48 bool stopping_; 51 bool stopping_;
49 52
50 DISALLOW_COPY_AND_ASSIGN(FakeTextTrackStream); 53 DISALLOW_COPY_AND_ASSIGN(FakeTextTrackStream);
51 }; 54 };
52 55
53 } // namespace media 56 } // namespace media
54 57
55 #endif // MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_ 58 #endif // MEDIA_BASE_FAKE_TEXT_TRACK_STREAM_H_
OLDNEW
« no previous file with comments | « media/base/fake_demuxer_stream.cc ('k') | media/base/fake_text_track_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698