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

Unified Diff: media/base/key_systems.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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.h
diff --git a/media/base/key_systems.h b/media/base/key_systems.h
index 92a4b637fae9fe8b5bfdb770e078a383f372be60..1c9c4dabea2148019d0eb0cb1985da54216fe5db 100644
--- a/media/base/key_systems.h
+++ b/media/base/key_systems.h
@@ -117,11 +117,10 @@ MEDIA_EXPORT std::string GetPepperType(
#if defined(UNIT_TEST)
// Helper functions to add container/codec types for testing purposes.
-MEDIA_EXPORT void AddContainerMask(const std::string& container, uint32 mask);
-MEDIA_EXPORT void AddCodecMask(
- EmeMediaType media_type,
- const std::string& codec,
- uint32 mask);
+MEDIA_EXPORT void AddContainerMask(const std::string& container, uint32_t mask);
+MEDIA_EXPORT void AddCodecMask(EmeMediaType media_type,
+ const std::string& codec,
+ uint32_t mask);
#endif // defined(UNIT_TEST)
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698