summaryrefslogtreecommitdiffstats
path: root/cc/test/fake_picture_pile_impl.cc
diff options
context:
space:
mode:
authorernstm@chromium.org <ernstm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-01 23:39:35 +0000
committerernstm@chromium.org <ernstm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-01 23:39:35 +0000
commit213543a727cc30254e8f0229a7dbcb750bbc29a6 (patch)
treee2a1cf09e068fb3729bca8c533f678f70d9d21a3 /cc/test/fake_picture_pile_impl.cc
parent5f86aeaeb83fd4d9e46cee2d61666a293e1353a5 (diff)
downloadchromium_src-213543a727cc30254e8f0229a7dbcb750bbc29a6.zip
chromium_src-213543a727cc30254e8f0229a7dbcb750bbc29a6.tar.gz
chromium_src-213543a727cc30254e8f0229a7dbcb750bbc29a6.tar.bz2
cc: Add best_record_time to rendering stats.
- Symmetric to best_rasterize_time. - In preparation for moving rasterize_and_record benchmark to tracing based architecture. R=nduca@chromium.org BUG=280638 Review URL: https://codereview.chromium.org/25284005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226345 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_picture_pile_impl.cc')
-rw-r--r--cc/test/fake_picture_pile_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/test/fake_picture_pile_impl.cc b/cc/test/fake_picture_pile_impl.cc
index c79d0ae..01b481f 100644
--- a/cc/test/fake_picture_pile_impl.cc
+++ b/cc/test/fake_picture_pile_impl.cc
@@ -66,7 +66,7 @@ void FakePicturePileImpl::AddRecordingAt(int x, int y) {
FakeRenderingStatsInstrumentation stats_instrumentation;
scoped_refptr<Picture> picture(Picture::Create(bounds));
- picture->Record(&client_, tile_grid_info_, &stats_instrumentation);
+ picture->Record(&client_, tile_grid_info_);
picture->GatherPixelRefs(tile_grid_info_, &stats_instrumentation);
picture_list_map_[std::pair<int, int>(x, y)].push_back(picture);
EXPECT_TRUE(HasRecordingAt(x, y));