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

Unified Diff: cc/trees/layer_tree_host_perftest.cc

Issue 56573002: cc: Only report calc_draw_props_count. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix stray diff Created 7 years, 1 month 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/trees/layer_tree_host_common_perftest.cc ('k') | testing/perf/perf_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_perftest.cc
diff --git a/cc/trees/layer_tree_host_perftest.cc b/cc/trees/layer_tree_host_perftest.cc
index 79ee46be8142bd84eef6e8b2eb0434e626242d4e..5f15ca6e156c34dc96df2837d9c4843da346c818 100644
--- a/cc/trees/layer_tree_host_perftest.cc
+++ b/cc/trees/layer_tree_host_perftest.cc
@@ -88,13 +88,9 @@ class LayerTreeHostPerfTest : public LayerTreeTest {
virtual void AfterTest() OVERRIDE {
CHECK(!test_name_.empty()) << "Must SetTestName() before AfterTest().";
- perf_test::PrintResult("layer_tree_host_frame_count", "", test_name_,
- draw_timer_.NumLaps(), "frame_count", true);
perf_test::PrintResult("layer_tree_host_frame_time", "", test_name_,
1000 * draw_timer_.MsPerLap(), "us", true);
if (measure_commit_cost_) {
- perf_test::PrintResult("layer_tree_host_commit_count", "", test_name_,
- commit_timer_.NumLaps(), "commit_count", true);
perf_test::PrintResult("layer_tree_host_commit_time", "", test_name_,
1000 * commit_timer_.MsPerLap(), "us", true);
}
« no previous file with comments | « cc/trees/layer_tree_host_common_perftest.cc ('k') | testing/perf/perf_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698