| Index: cc/tiles/tile.h
|
| diff --git a/cc/tiles/tile.h b/cc/tiles/tile.h
|
| index e245e0111d9ffa3fb26ed09e560d4e1d006eee41..6ca9e87e21c32a761618247f8a1293054ab2916b 100644
|
| --- a/cc/tiles/tile.h
|
| +++ b/cc/tiles/tile.h
|
| @@ -5,6 +5,10 @@
|
| #ifndef CC_TILES_TILE_H_
|
| #define CC_TILES_TILE_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "cc/tiles/tile_draw_info.h"
|
| #include "ui/gfx/geometry/rect.h"
|
| @@ -45,7 +49,7 @@ class CC_EXPORT Tile {
|
|
|
| enum TileRasterFlags { USE_PICTURE_ANALYSIS = 1 << 0, IS_OPAQUE = 1 << 1 };
|
|
|
| - typedef uint64 Id;
|
| + typedef uint64_t Id;
|
|
|
| Id id() const {
|
| return id_;
|
|
|