Index: ppapi/proxy/raw_var_data.h |
diff --git a/ppapi/proxy/raw_var_data.h b/ppapi/proxy/raw_var_data.h |
index 9db31007abbf95b33c6c4ca74ae7ef4e5af1387f..4789ccdc1b6613710872c76b652e21bfb223a0f9 100644 |
--- a/ppapi/proxy/raw_var_data.h |
+++ b/ppapi/proxy/raw_var_data.h |
@@ -5,6 +5,9 @@ |
#ifndef PPAPI_PROXY_RAW_VAR_DATA_H_ |
#define PPAPI_PROXY_RAW_VAR_DATA_H_ |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include <vector> |
#include "base/callback.h" |
@@ -81,7 +84,7 @@ class PPAPI_PROXY_EXPORT RawVarDataGraph { |
// array buffers in IPC messages to using shared memory. This is only used |
// for testing purposes where we need to transmit small buffers using shmem |
// (in order to have fast tests). |
- static void SetMinimumArrayBufferSizeForShmemForTest(uint32 threshold); |
+ static void SetMinimumArrayBufferSizeForShmemForTest(uint32_t threshold); |
// A list of the nodes in the graph. |
ScopedVector<RawVarData> data_; |