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

Unified Diff: media/base/key_systems_unittest.cc

Issue 2723833002: WebM support for new multipart VP9 string. (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | media/base/media.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/key_systems_unittest.cc
diff --git a/media/base/key_systems_unittest.cc b/media/base/key_systems_unittest.cc
index 596cc9bf1449ff717b1b42213d3c596eb00e1604..665e68df4b30d07699ee6c2c25539671d791173a 100644
--- a/media/base/key_systems_unittest.cc
+++ b/media/base/key_systems_unittest.cc
@@ -180,9 +180,7 @@ class TestMediaClient : public MediaClient {
void AddSupportedKeySystems(std::vector<std::unique_ptr<KeySystemProperties>>*
key_systems_properties) override;
void RecordRapporURL(const std::string& metric, const GURL& url) final;
- bool IsSupportedVideoConfig(media::VideoCodec codec,
- media::VideoCodecProfile profile,
- int level) final;
+ bool IsSupportedVideoConfig(const media::VideoConfig& config) final;
// Helper function to test the case where IsKeySystemsUpdateNeeded() is true
// after AddSupportedKeySystems() is called.
@@ -233,9 +231,7 @@ void TestMediaClient::RecordRapporURL(const std::string& /* metric */,
NOTIMPLEMENTED();
}
-bool TestMediaClient::IsSupportedVideoConfig(media::VideoCodec codec,
- media::VideoCodecProfile profile,
- int level) {
+bool TestMediaClient::IsSupportedVideoConfig(const media::VideoConfig& config) {
return true;
}
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | media/base/media.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698