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

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

Issue 1641423002: Re-land extract state management from WebMediaPlayerImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initialize |should_notify_time_changed_|. Created 4 years, 9 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/mock_filters.h ('k') | media/blink/webmediaplayer_cast_android.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 (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 #include "media/base/mock_filters.h" 5 #include "media/base/mock_filters.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 9
10 using ::testing::_; 10 using ::testing::_;
11 using ::testing::Invoke; 11 using ::testing::Invoke;
12 using ::testing::NotNull; 12 using ::testing::NotNull;
13 using ::testing::Return; 13 using ::testing::Return;
14 14
15 namespace media { 15 namespace media {
16 16
17 MockPipeline::MockPipeline() {}
18
19 MockPipeline::~MockPipeline() {}
20
21 void MockPipeline::Start(Demuxer* demuxer,
22 scoped_ptr<Renderer> renderer,
23 const base::Closure& ended_cb,
24 const PipelineStatusCB& error_cb,
25 const PipelineStatusCB& seek_cb,
26 const PipelineMetadataCB& metadata_cb,
27 const BufferingStateCB& buffering_state_cb,
28 const base::Closure& duration_change_cb,
29 const AddTextTrackCB& add_text_track_cb,
30 const base::Closure& waiting_for_decryption_key_cb) {
31 Start(demuxer, &renderer, ended_cb, error_cb, seek_cb, metadata_cb,
32 buffering_state_cb, duration_change_cb, add_text_track_cb,
33 waiting_for_decryption_key_cb);
34 }
35
36 void MockPipeline::Resume(scoped_ptr<Renderer> renderer,
37 base::TimeDelta timestamp,
38 const PipelineStatusCB& seek_cb) {
39 Resume(&renderer, timestamp, seek_cb);
40 }
41
17 MockDemuxer::MockDemuxer() {} 42 MockDemuxer::MockDemuxer() {}
18 43
19 MockDemuxer::~MockDemuxer() {} 44 MockDemuxer::~MockDemuxer() {}
20 45
21 std::string MockDemuxer::GetDisplayName() const { 46 std::string MockDemuxer::GetDisplayName() const {
22 return "MockDemuxer"; 47 return "MockDemuxer";
23 } 48 }
24 49
25 MockDemuxerStream::MockDemuxerStream(DemuxerStream::Type type) 50 MockDemuxerStream::MockDemuxerStream(DemuxerStream::Type type)
26 : type_(type), liveness_(LIVENESS_UNKNOWN) { 51 : type_(type), liveness_(LIVENESS_UNKNOWN) {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 135
111 MockCdmContext::MockCdmContext() {} 136 MockCdmContext::MockCdmContext() {}
112 137
113 MockCdmContext::~MockCdmContext() {} 138 MockCdmContext::~MockCdmContext() {}
114 139
115 int MockCdmContext::GetCdmId() const { 140 int MockCdmContext::GetCdmId() const {
116 return CdmContext::kInvalidCdmId; 141 return CdmContext::kInvalidCdmId;
117 } 142 }
118 143
119 } // namespace media 144 } // namespace media
OLDNEW
« no previous file with comments | « media/base/mock_filters.h ('k') | media/blink/webmediaplayer_cast_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698