Index: ppapi/proxy/video_encoder_resource_unittest.cc |
diff --git a/ppapi/proxy/video_encoder_resource_unittest.cc b/ppapi/proxy/video_encoder_resource_unittest.cc |
index 466a1ef522093b76b0155a7d3d0574b5c84de239..2b122e93b591895a49e9e1a4b74cf6d75293c880 100644 |
--- a/ppapi/proxy/video_encoder_resource_unittest.cc |
+++ b/ppapi/proxy/video_encoder_resource_unittest.cc |
@@ -4,6 +4,8 @@ |
#include "ppapi/proxy/video_encoder_resource.h" |
+#include <stdint.h> |
+ |
#include <utility> |
#include "base/memory/shared_memory.h" |
@@ -511,7 +513,7 @@ TEST_F(VideoEncoderResourceTest, GetSupportedProfiles0_1) { |
ASSERT_EQ(profiles_response.size(), static_cast<uint32_t>(cb.result())); |
- for (uint32 i = 0; i < profiles_response.size(); i++) { |
+ for (uint32_t i = 0; i < profiles_response.size(); i++) { |
ASSERT_EQ(profiles_response[i].profile, profiles[i].profile); |
ASSERT_EQ(profiles_response[i].max_resolution.width, |
profiles[i].max_resolution.width); |