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

Unified Diff: cc/debug/rendering_stats_instrumentation.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/rendering_stats.h ('k') | cc/debug/rendering_stats_instrumentation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats_instrumentation.h
diff --git a/cc/debug/rendering_stats_instrumentation.h b/cc/debug/rendering_stats_instrumentation.h
index 834e10c069d29673f071fd5a5b86d8838fe0cfb4..9197fb6ac13f5ba024996716394f2d6450a00df1 100644
--- a/cc/debug/rendering_stats_instrumentation.h
+++ b/cc/debug/rendering_stats_instrumentation.h
@@ -5,6 +5,9 @@
#ifndef CC_DEBUG_RENDERING_STATS_INSTRUMENTATION_H_
#define CC_DEBUG_RENDERING_STATS_INSTRUMENTATION_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/synchronization/lock.h"
#include "cc/debug/rendering_stats.h"
@@ -37,12 +40,12 @@ class CC_EXPORT RenderingStatsInstrumentation {
record_rendering_stats_ = record_rendering_stats;
}
- void IncrementFrameCount(int64 count);
- void AddVisibleContentArea(int64 area);
- void AddApproximatedVisibleContentArea(int64 area);
- void AddCheckerboardedVisibleContentArea(int64 area);
- void AddCheckerboardedNoRecordingContentArea(int64 area);
- void AddCheckerboardedNeedsRasterContentArea(int64 area);
+ void IncrementFrameCount(int64_t count);
+ void AddVisibleContentArea(int64_t area);
+ void AddApproximatedVisibleContentArea(int64_t area);
+ void AddCheckerboardedVisibleContentArea(int64_t area);
+ void AddCheckerboardedNoRecordingContentArea(int64_t area);
+ void AddCheckerboardedNeedsRasterContentArea(int64_t area);
void AddDrawDuration(base::TimeDelta draw_duration,
base::TimeDelta draw_duration_estimate);
void AddBeginMainFrameToCommitDuration(
« no previous file with comments | « cc/debug/rendering_stats.h ('k') | cc/debug/rendering_stats_instrumentation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698