Index: ui/gfx/ipc/gfx_param_traits.cc |
diff --git a/ui/gfx/ipc/gfx_param_traits.cc b/ui/gfx/ipc/gfx_param_traits.cc |
index 32fd2da5605677de3961573d1f79c771a97726ea..2eeefbf0580d4619ffab706812960a06f46310f4 100644 |
--- a/ui/gfx/ipc/gfx_param_traits.cc |
+++ b/ui/gfx/ipc/gfx_param_traits.cc |
@@ -4,6 +4,9 @@ |
#include "ui/gfx/ipc/gfx_param_traits.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include <string> |
#include "third_party/skia/include/core/SkBitmap.h" |
@@ -23,10 +26,10 @@ struct SkBitmap_Data { |
SkAlphaType fAlphaType; |
// The width of the bitmap in pixels. |
- uint32 fWidth; |
+ uint32_t fWidth; |
// The height of the bitmap in pixels. |
- uint32 fHeight; |
+ uint32_t fHeight; |
void InitSkBitmapDataForTransfer(const SkBitmap& bitmap) { |
const SkImageInfo& info = bitmap.info(); |