summaryrefslogtreecommitdiffstats
path: root/cc/debug/rendering_stats_instrumentation.h
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-20 22:14:36 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-21 06:15:26 +0000
commit02a4d17f5a95ceea4049ccf1036f051d6630dfb1 (patch)
treeedcdd42d563dfab9f6f8c6629ea0588dc70e2148 /cc/debug/rendering_stats_instrumentation.h
parenta0b6d530f224b4ac0b0bd0c4d47a96ea7353bfe4 (diff)
downloadchromium_src-02a4d17f5a95ceea4049ccf1036f051d6630dfb1.zip
chromium_src-02a4d17f5a95ceea4049ccf1036f051d6630dfb1.tar.gz
chromium_src-02a4d17f5a95ceea4049ccf1036f051d6630dfb1.tar.bz2
Switch to standard integer types in cc/.
BUG=138542 TBR=danakj@chromium.org CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1539203002 Cr-Commit-Position: refs/heads/master@{#366333}
Diffstat (limited to 'cc/debug/rendering_stats_instrumentation.h')
-rw-r--r--cc/debug/rendering_stats_instrumentation.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/cc/debug/rendering_stats_instrumentation.h b/cc/debug/rendering_stats_instrumentation.h
index 834e10c..9197fb6 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(