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

Unified Diff: media/base/key_systems_unittest.cc

Issue 2853123003: EME contentType checks for AC3/EAC3 (Closed)
Patch Set: int32 Created 3 years, 8 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 | « media/base/key_systems.cc ('k') | no next file » | 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 2d3d3ba67d1a12323cf198419b89246b780eeba9..e5676cf9fbccc49bd58eb20dabab5052b050d485 100644
--- a/media/base/key_systems_unittest.cc
+++ b/media/base/key_systems_unittest.cc
@@ -39,10 +39,10 @@ const char kVideoFoo[] = "video/foo";
// Pick some arbitrary bit fields as long as they are not in conflict with the
// real ones.
-enum TestCodec {
- TEST_CODEC_FOO_AUDIO = 1 << 10, // An audio codec for foo container.
+enum TestCodec : uint32_t {
+ TEST_CODEC_FOO_AUDIO = 1 << 29, // An audio codec for foo container.
TEST_CODEC_FOO_AUDIO_ALL = TEST_CODEC_FOO_AUDIO,
- TEST_CODEC_FOO_VIDEO = 1 << 11, // A video codec for foo container.
+ TEST_CODEC_FOO_VIDEO = 1 << 30, // A video codec for foo container.
TEST_CODEC_FOO_VIDEO_ALL = TEST_CODEC_FOO_VIDEO,
TEST_CODEC_FOO_ALL = TEST_CODEC_FOO_AUDIO_ALL | TEST_CODEC_FOO_VIDEO_ALL
};
« no previous file with comments | « media/base/key_systems.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698