summaryrefslogtreecommitdiffstats
path: root/cc/debug/rendering_stats_instrumentation.h
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-13 08:20:16 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-13 08:20:16 +0000
commit8b6cea09a979ffb5e9d625cc2b3a4587c1929a32 (patch)
treec7afb93aa45f3cc6691660ab17f7a9496dc87e2c /cc/debug/rendering_stats_instrumentation.h
parentc27fdee9d2b32a33ce6f323a5d0ef4f28f5f7792 (diff)
downloadchromium_src-8b6cea09a979ffb5e9d625cc2b3a4587c1929a32.zip
chromium_src-8b6cea09a979ffb5e9d625cc2b3a4587c1929a32.tar.gz
chromium_src-8b6cea09a979ffb5e9d625cc2b3a4587c1929a32.tar.bz2
cc: Include analysis in raster benchmark costs
Insert analysis costs into the raster benchmark. This will make it possible to combine analysis and raster into a single step and be confident that it will not regress the total costs of rastering a tile. ATTN perf sheriffs: this will regress benchmarks because it is doing more work, but it is a more accurate representation of the work that gets done per unit of raster work. This should be treated as a "perf rebaseline" and not as a regression. R=vmpstr@chromium.org BUG=none Review URL: https://codereview.chromium.org/74713006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/debug/rendering_stats_instrumentation.h')
-rw-r--r--cc/debug/rendering_stats_instrumentation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/debug/rendering_stats_instrumentation.h b/cc/debug/rendering_stats_instrumentation.h
index 4508600..6811755 100644
--- a/cc/debug/rendering_stats_instrumentation.h
+++ b/cc/debug/rendering_stats_instrumentation.h
@@ -52,6 +52,7 @@ class CC_EXPORT RenderingStatsInstrumentation {
void AddPaint(base::TimeDelta duration, int64 pixels);
void AddRecord(base::TimeDelta duration, int64 pixels);
void AddRaster(base::TimeDelta duration, int64 pixels);
+ void AddAnalysis(base::TimeDelta duration, int64 pixels);
protected:
RenderingStatsInstrumentation();