Index: cc/resources/shared_bitmap.cc |
diff --git a/cc/resources/shared_bitmap.cc b/cc/resources/shared_bitmap.cc |
index fc15736315b756f438ebd8bc3cb4afbba17458c8..2eb128af661f4d1e2f3fccc3a3e7368fed16cbea 100644 |
--- a/cc/resources/shared_bitmap.cc |
+++ b/cc/resources/shared_bitmap.cc |
@@ -4,6 +4,9 @@ |
#include "cc/resources/shared_bitmap.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include "base/logging.h" |
#include "base/numerics/safe_math.h" |
#include "base/rand_util.h" |
@@ -12,9 +15,8 @@ |
namespace cc { |
-SharedBitmap::SharedBitmap(uint8* pixels, const SharedBitmapId& id) |
- : pixels_(pixels), id_(id) { |
-} |
+SharedBitmap::SharedBitmap(uint8_t* pixels, const SharedBitmapId& id) |
+ : pixels_(pixels), id_(id) {} |
SharedBitmap::~SharedBitmap() { |
} |