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

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

Issue 8661002: Fire CanPlayThrough immediately for local and streaming media files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix media/event-attributes.html Created 9 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // A new breed of mock media filters, this time using gmock! Feel free to add 5 // A new breed of mock media filters, this time using gmock! Feel free to add
6 // actions if you need interesting side-effects (i.e., copying data to the 6 // actions if you need interesting side-effects (i.e., copying data to the
7 // buffer passed into MockDataSource::Read()). 7 // buffer passed into MockDataSource::Read()).
8 // 8 //
9 // Don't forget you can use StrictMock<> and NiceMock<> if you want the mock 9 // Don't forget you can use StrictMock<> and NiceMock<> if you want the mock
10 // filters to fail the test or do nothing when an unexpected method is called. 10 // filters to fail the test or do nothing when an unexpected method is called.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 MOCK_METHOD2(Seek, void(base::TimeDelta time, const FilterStatusCB& cb)); 80 MOCK_METHOD2(Seek, void(base::TimeDelta time, const FilterStatusCB& cb));
81 MOCK_METHOD0(OnAudioRendererDisabled, void()); 81 MOCK_METHOD0(OnAudioRendererDisabled, void());
82 82
83 // DataSource implementation. 83 // DataSource implementation.
84 MOCK_METHOD4(Read, void(int64 position, size_t size, uint8* data, 84 MOCK_METHOD4(Read, void(int64 position, size_t size, uint8* data,
85 const DataSource::ReadCallback& callback)); 85 const DataSource::ReadCallback& callback));
86 MOCK_METHOD1(GetSize, bool(int64* size_out)); 86 MOCK_METHOD1(GetSize, bool(int64* size_out));
87 MOCK_METHOD1(SetPreload, void(Preload preload)); 87 MOCK_METHOD1(SetPreload, void(Preload preload));
88 MOCK_METHOD1(SetBitrate, void(int bitrate)); 88 MOCK_METHOD1(SetBitrate, void(int bitrate));
89 MOCK_METHOD0(IsStreaming, bool()); 89 MOCK_METHOD0(IsStreaming, bool());
90 MOCK_METHOD0(IsLocalSource, bool());
90 91
91 // Sets the TotalBytes & BufferedBytes values to be sent to host() when 92 // Sets the TotalBytes & BufferedBytes values to be sent to host() when
92 // the set_host() is called. 93 // the set_host() is called.
93 void SetTotalAndBufferedBytes(int64 total_bytes, int64 buffered_bytes); 94 void SetTotalAndBufferedBytes(int64 total_bytes, int64 buffered_bytes);
94 95
95 protected: 96 protected:
96 virtual ~MockDataSource(); 97 virtual ~MockDataSource();
97 98
98 private: 99 private:
99 int64 total_bytes_; 100 int64 total_bytes_;
100 int64 buffered_bytes_; 101 int64 buffered_bytes_;
101 102
102 DISALLOW_COPY_AND_ASSIGN(MockDataSource); 103 DISALLOW_COPY_AND_ASSIGN(MockDataSource);
103 }; 104 };
104 105
105 class MockDemuxer : public Demuxer { 106 class MockDemuxer : public Demuxer {
106 public: 107 public:
107 MockDemuxer(); 108 MockDemuxer();
108 // Filter implementation. 109 // Filter implementation.
109 virtual void set_host(FilterHost* host); 110 virtual void set_host(FilterHost* host);
110 MOCK_METHOD1(Stop, void(const base::Closure& callback)); 111 MOCK_METHOD1(Stop, void(const base::Closure& callback));
111 MOCK_METHOD1(SetPlaybackRate, void(float playback_rate)); 112 MOCK_METHOD1(SetPlaybackRate, void(float playback_rate));
112 MOCK_METHOD1(SetPreload, void(Preload preload)); 113 MOCK_METHOD1(SetPreload, void(Preload preload));
113 MOCK_METHOD2(Seek, void(base::TimeDelta time, const FilterStatusCB& cb)); 114 MOCK_METHOD2(Seek, void(base::TimeDelta time, const FilterStatusCB& cb));
114 MOCK_METHOD0(OnAudioRendererDisabled, void()); 115 MOCK_METHOD0(OnAudioRendererDisabled, void());
115 MOCK_METHOD0(GetBitrate, int()); 116 MOCK_METHOD0(GetBitrate, int());
117 MOCK_METHOD0(IsLocalSource, bool());
116 118
117 // Demuxer implementation. 119 // Demuxer implementation.
118 MOCK_METHOD2(Initialize, void(DataSource* data_source, 120 MOCK_METHOD2(Initialize, void(DataSource* data_source,
119 const base::Closure& callback)); 121 const base::Closure& callback));
120 MOCK_METHOD1(GetStream, scoped_refptr<DemuxerStream>(DemuxerStream::Type)); 122 MOCK_METHOD1(GetStream, scoped_refptr<DemuxerStream>(DemuxerStream::Type));
121 MOCK_CONST_METHOD0(GetStartTime, base::TimeDelta()); 123 MOCK_CONST_METHOD0(GetStartTime, base::TimeDelta());
122 124
123 // Sets the TotalBytes, BufferedBytes, & Duration values to be sent to host() 125 // Sets the TotalBytes, BufferedBytes, & Duration values to be sent to host()
124 // when set_host() is called. 126 // when set_host() is called.
125 void SetTotalAndBufferedBytesAndDuration( 127 void SetTotalAndBufferedBytesAndDuration(
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 public: 351 public:
350 MockStatisticsCallback(); 352 MockStatisticsCallback();
351 ~MockStatisticsCallback(); 353 ~MockStatisticsCallback();
352 354
353 MOCK_METHOD1(OnStatistics, void(const media::PipelineStatistics& statistics)); 355 MOCK_METHOD1(OnStatistics, void(const media::PipelineStatistics& statistics));
354 }; 356 };
355 357
356 } // namespace media 358 } // namespace media
357 359
358 #endif // MEDIA_BASE_MOCK_FILTERS_H_ 360 #endif // MEDIA_BASE_MOCK_FILTERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698