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

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

Issue 1955843002: Move Renderer permanent callbacks into RendererClient interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 7 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/base/pipeline_impl.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 #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
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
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
OLDNEW
« no previous file with comments | « media/base/mock_filters.h ('k') | media/base/pipeline_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698