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

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

Issue 231283005: Add live mode detection in WebM MediaSource parser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/stream_parser.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_MOCK_FILTERS_H_ 5 #ifndef MEDIA_BASE_MOCK_FILTERS_H_
6 #define MEDIA_BASE_MOCK_FILTERS_H_ 6 #define MEDIA_BASE_MOCK_FILTERS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 22 matching lines...) Expand all
33 // Demuxer implementation. 33 // Demuxer implementation.
34 MOCK_METHOD3(Initialize, 34 MOCK_METHOD3(Initialize,
35 void(DemuxerHost* host, const PipelineStatusCB& cb, bool)); 35 void(DemuxerHost* host, const PipelineStatusCB& cb, bool));
36 MOCK_METHOD1(SetPlaybackRate, void(float playback_rate)); 36 MOCK_METHOD1(SetPlaybackRate, void(float playback_rate));
37 MOCK_METHOD2(Seek, void(base::TimeDelta time, const PipelineStatusCB& cb)); 37 MOCK_METHOD2(Seek, void(base::TimeDelta time, const PipelineStatusCB& cb));
38 MOCK_METHOD1(Stop, void(const base::Closure& callback)); 38 MOCK_METHOD1(Stop, void(const base::Closure& callback));
39 MOCK_METHOD0(OnAudioRendererDisabled, void()); 39 MOCK_METHOD0(OnAudioRendererDisabled, void());
40 MOCK_METHOD1(GetStream, DemuxerStream*(DemuxerStream::Type)); 40 MOCK_METHOD1(GetStream, DemuxerStream*(DemuxerStream::Type));
41 MOCK_CONST_METHOD0(GetStartTime, base::TimeDelta()); 41 MOCK_CONST_METHOD0(GetStartTime, base::TimeDelta());
42 MOCK_CONST_METHOD0(GetTimelineOffset, base::Time()); 42 MOCK_CONST_METHOD0(GetTimelineOffset, base::Time());
43 MOCK_CONST_METHOD0(GetLiveness, Liveness());
43 44
44 private: 45 private:
45 DISALLOW_COPY_AND_ASSIGN(MockDemuxer); 46 DISALLOW_COPY_AND_ASSIGN(MockDemuxer);
46 }; 47 };
47 48
48 class MockDemuxerStream : public DemuxerStream { 49 class MockDemuxerStream : public DemuxerStream {
49 public: 50 public:
50 explicit MockDemuxerStream(DemuxerStream::Type type); 51 explicit MockDemuxerStream(DemuxerStream::Type type);
51 virtual ~MockDemuxerStream(); 52 virtual ~MockDemuxerStream();
52 53
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 public: 208 public:
208 MockStatisticsCB(); 209 MockStatisticsCB();
209 ~MockStatisticsCB(); 210 ~MockStatisticsCB();
210 211
211 MOCK_METHOD1(OnStatistics, void(const media::PipelineStatistics& statistics)); 212 MOCK_METHOD1(OnStatistics, void(const media::PipelineStatistics& statistics));
212 }; 213 };
213 214
214 } // namespace media 215 } // namespace media
215 216
216 #endif // MEDIA_BASE_MOCK_FILTERS_H_ 217 #endif // MEDIA_BASE_MOCK_FILTERS_H_
OLDNEW
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/stream_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698