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

Unified Diff: cc/debug/rendering_stats.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/debug/rasterize_and_record_benchmark_impl.cc ('k') | cc/debug/rendering_stats_instrumentation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats.h
diff --git a/cc/debug/rendering_stats.h b/cc/debug/rendering_stats.h
index fbe0d638199d4fdd7c3fde6f4376615739188177..f2964472860c1af183e555267cc5fb6404211467 100644
--- a/cc/debug/rendering_stats.h
+++ b/cc/debug/rendering_stats.h
@@ -5,9 +5,10 @@
#ifndef CC_DEBUG_RENDERING_STATS_H_
#define CC_DEBUG_RENDERING_STATS_H_
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
#include "base/time/time.h"
#include "base/trace_event/trace_event_argument.h"
#include "base/values.h"
@@ -41,12 +42,12 @@ struct CC_EXPORT RenderingStats {
// Note: when adding new members, please remember to update Add in
// rendering_stats.cc.
- int64 frame_count;
- int64 visible_content_area;
- int64 approximated_visible_content_area;
- int64 checkerboarded_visible_content_area;
- int64 checkerboarded_no_recording_content_area;
- int64 checkerboarded_needs_raster_content_area;
+ int64_t frame_count;
+ int64_t visible_content_area;
+ int64_t approximated_visible_content_area;
+ int64_t checkerboarded_visible_content_area;
+ int64_t checkerboarded_no_recording_content_area;
+ int64_t checkerboarded_needs_raster_content_area;
TimeDeltaList draw_duration;
TimeDeltaList draw_duration_estimate;
« no previous file with comments | « cc/debug/rasterize_and_record_benchmark_impl.cc ('k') | cc/debug/rendering_stats_instrumentation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698