| OLD | NEW |
| 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 | |
| 42 MockDemuxer::MockDemuxer() {} | 17 MockDemuxer::MockDemuxer() {} |
| 43 | 18 |
| 44 MockDemuxer::~MockDemuxer() {} | 19 MockDemuxer::~MockDemuxer() {} |
| 45 | 20 |
| 46 std::string MockDemuxer::GetDisplayName() const { | 21 std::string MockDemuxer::GetDisplayName() const { |
| 47 return "MockDemuxer"; | 22 return "MockDemuxer"; |
| 48 } | 23 } |
| 49 | 24 |
| 50 MockDemuxerStream::MockDemuxerStream(DemuxerStream::Type type) | 25 MockDemuxerStream::MockDemuxerStream(DemuxerStream::Type type) |
| 51 : type_(type), liveness_(LIVENESS_UNKNOWN) { | 26 : type_(type), liveness_(LIVENESS_UNKNOWN) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 110 |
| 136 MockCdmContext::MockCdmContext() {} | 111 MockCdmContext::MockCdmContext() {} |
| 137 | 112 |
| 138 MockCdmContext::~MockCdmContext() {} | 113 MockCdmContext::~MockCdmContext() {} |
| 139 | 114 |
| 140 int MockCdmContext::GetCdmId() const { | 115 int MockCdmContext::GetCdmId() const { |
| 141 return CdmContext::kInvalidCdmId; | 116 return CdmContext::kInvalidCdmId; |
| 142 } | 117 } |
| 143 | 118 |
| 144 } // namespace media | 119 } // namespace media |
| OLD | NEW |