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

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

Issue 2352253002: Added MediaSourceState unit test. (Closed)
Patch Set: Return OnNewConfigs cb result from the AppendData helper Created 4 years, 2 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
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 MockCdmContext::~MockCdmContext() {} 135 MockCdmContext::~MockCdmContext() {}
136 136
137 int MockCdmContext::GetCdmId() const { 137 int MockCdmContext::GetCdmId() const {
138 return cdm_id_; 138 return cdm_id_;
139 } 139 }
140 140
141 void MockCdmContext::set_cdm_id(int cdm_id) { 141 void MockCdmContext::set_cdm_id(int cdm_id) {
142 cdm_id_ = cdm_id; 142 cdm_id_ = cdm_id;
143 } 143 }
144 144
145 MockStreamParser::MockStreamParser() {}
146
147 MockStreamParser::~MockStreamParser() {}
148
145 } // namespace media 149 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698