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

Unified Diff: media/base/key_systems_unittest.cc

Issue 2723833002: WebM support for new multipart VP9 string. (Closed)
Patch Set: Use latest ordering (9 parts), Plumb eotf to media client Created 3 years, 10 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
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..c3728cd11fe67d0847af8a062b7472e2e23197a0 100644
--- a/media/base/key_systems_unittest.cc
+++ b/media/base/key_systems_unittest.cc
@@ -182,7 +182,8 @@ class TestMediaClient : public MediaClient {
void RecordRapporURL(const std::string& metric, const GURL& url) final;
bool IsSupportedVideoConfig(media::VideoCodec codec,
media::VideoCodecProfile profile,
- int level) final;
+ int level,
+ gfx::ColorSpace::TransferID eotf) final;
// Helper function to test the case where IsKeySystemsUpdateNeeded() is true
// after AddSupportedKeySystems() is called.
@@ -235,7 +236,8 @@ void TestMediaClient::RecordRapporURL(const std::string& /* metric */,
bool TestMediaClient::IsSupportedVideoConfig(media::VideoCodec codec,
media::VideoCodecProfile profile,
- int level) {
+ int level,
+ gfx::ColorSpace::TransferID eotf) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698