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

Unified Diff: ppapi/examples/video_encode/video_encode.cc

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes 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
« no previous file with comments | « ppapi/examples/video_effects/video_effects.cc ('k') | ppapi/generators/test_thunk/simple_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/examples/video_encode/video_encode.cc
diff --git a/ppapi/examples/video_encode/video_encode.cc b/ppapi/examples/video_encode/video_encode.cc
index bbe67f3dc48442ca88e77976e1d75195f513eff2..3c61888149d04fdf6d041b4bdad5b5bbd41851bd 100644
--- a/ppapi/examples/video_encode/video_encode.cc
+++ b/ppapi/examples/video_encode/video_encode.cc
@@ -38,6 +38,8 @@
// include-guards), make sure this is the last file #include'd in this file.
#undef NDEBUG
#include <assert.h>
+#include <stddef.h>
+#include <stdint.h>
#define fourcc(a, b, c, d) \
(((uint32_t)(a) << 0) | ((uint32_t)(b) << 8) | ((uint32_t)(c) << 16) | \
« no previous file with comments | « ppapi/examples/video_effects/video_effects.cc ('k') | ppapi/generators/test_thunk/simple_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698