Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: cc/layers/append_quads_data.h

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/input/top_controls_manager.cc ('k') | cc/layers/content_layer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « cc/input/top_controls_manager.cc ('k') | cc/layers/content_layer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698