| Index: cc/layers/append_quads_data.h
|
| diff --git a/cc/layers/append_quads_data.h b/cc/layers/append_quads_data.h
|
| index 3d05109c176ccf3f8a23ae9cf972312eb05097c6..f4e82bc993a91188fe0f55e9cdbd729422adb496 100644
|
| --- a/cc/layers/append_quads_data.h
|
| +++ b/cc/layers/append_quads_data.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef CC_LAYERS_APPEND_QUADS_DATA_H_
|
| #define CC_LAYERS_APPEND_QUADS_DATA_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| #include "cc/quads/render_pass_id.h"
|
|
|
| namespace cc {
|
| @@ -21,19 +22,19 @@ struct AppendQuadsData {
|
| checkerboarded_needs_raster_content_area(0) {}
|
|
|
| // Set by the layer appending quads.
|
| - int64 num_incomplete_tiles;
|
| + int64_t num_incomplete_tiles;
|
| // Set by the layer appending quads.
|
| - int64 num_missing_tiles;
|
| + int64_t num_missing_tiles;
|
| // Set by the layer appending quads.
|
| - int64 visible_layer_area;
|
| + int64_t visible_layer_area;
|
| // Set by the layer appending quads.
|
| - int64 approximated_visible_content_area;
|
| + int64_t approximated_visible_content_area;
|
| // Set by the layer appending quads. This is total of the following two areas.
|
| - int64 checkerboarded_visible_content_area;
|
| + int64_t checkerboarded_visible_content_area;
|
| // Set by the layer appending quads. This is the area outside interest rect.
|
| - int64 checkerboarded_no_recording_content_area;
|
| + int64_t checkerboarded_no_recording_content_area;
|
| // Set by the layer appending quads. This is the area within interest rect.
|
| - int64 checkerboarded_needs_raster_content_area;
|
| + int64_t checkerboarded_needs_raster_content_area;
|
| };
|
|
|
| } // namespace cc
|
|
|