| 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 | 8 |
| 9 using ::testing::_; | 9 using ::testing::_; |
| 10 using ::testing::Invoke; | 10 using ::testing::Invoke; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 std::string MockAudioDecoder::GetDisplayName() const { | 95 std::string MockAudioDecoder::GetDisplayName() const { |
| 96 return "MockAudioDecoder"; | 96 return "MockAudioDecoder"; |
| 97 } | 97 } |
| 98 | 98 |
| 99 MockVideoDecoder::~MockVideoDecoder() {} | 99 MockVideoDecoder::~MockVideoDecoder() {} |
| 100 | 100 |
| 101 MockAudioDecoder::MockAudioDecoder() {} | 101 MockAudioDecoder::MockAudioDecoder() {} |
| 102 | 102 |
| 103 MockAudioDecoder::~MockAudioDecoder() {} | 103 MockAudioDecoder::~MockAudioDecoder() {} |
| 104 | 104 |
| 105 MockRendererClient::MockRendererClient() {} |
| 106 |
| 107 MockRendererClient::~MockRendererClient() {} |
| 108 |
| 105 MockVideoRenderer::MockVideoRenderer() {} | 109 MockVideoRenderer::MockVideoRenderer() {} |
| 106 | 110 |
| 107 MockVideoRenderer::~MockVideoRenderer() {} | 111 MockVideoRenderer::~MockVideoRenderer() {} |
| 108 | 112 |
| 109 MockAudioRenderer::MockAudioRenderer() {} | 113 MockAudioRenderer::MockAudioRenderer() {} |
| 110 | 114 |
| 111 MockAudioRenderer::~MockAudioRenderer() {} | 115 MockAudioRenderer::~MockAudioRenderer() {} |
| 112 | 116 |
| 113 MockRenderer::MockRenderer() {} | 117 MockRenderer::MockRenderer() {} |
| 114 | 118 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 128 | 132 |
| 129 MockCdmContext::MockCdmContext() {} | 133 MockCdmContext::MockCdmContext() {} |
| 130 | 134 |
| 131 MockCdmContext::~MockCdmContext() {} | 135 MockCdmContext::~MockCdmContext() {} |
| 132 | 136 |
| 133 int MockCdmContext::GetCdmId() const { | 137 int MockCdmContext::GetCdmId() const { |
| 134 return CdmContext::kInvalidCdmId; | 138 return CdmContext::kInvalidCdmId; |
| 135 } | 139 } |
| 136 | 140 |
| 137 } // namespace media | 141 } // namespace media |
| OLD | NEW |