| Index: cc/test/fake_picture_pile_impl.cc
|
| diff --git a/cc/test/fake_picture_pile_impl.cc b/cc/test/fake_picture_pile_impl.cc
|
| index 57a50742e3f0014639f388aa49ab5e5d5f5132ae..3601539f5f3be6c2dcbff3221819f43ab39fa61c 100644
|
| --- a/cc/test/fake_picture_pile_impl.cc
|
| +++ b/cc/test/fake_picture_pile_impl.cc
|
| @@ -84,8 +84,13 @@ void FakePicturePileImpl::AddRecordingAt(int x, int y) {
|
| gfx::Rect bounds(tiling().TileBounds(x, y));
|
| bounds.Inset(-buffer_pixels(), -buffer_pixels());
|
|
|
| - scoped_refptr<Picture> picture(Picture::Create(
|
| - bounds, &client_, tile_grid_info_, true, 0, Picture::RECORD_NORMALLY));
|
| + scoped_refptr<Picture> picture(Picture::Create(bounds,
|
| + &client_,
|
| + tile_grid_info_,
|
| + true,
|
| + false,
|
| + 0,
|
| + Picture::RECORD_NORMALLY));
|
| picture_map_[std::pair<int, int>(x, y)].SetPicture(picture);
|
| EXPECT_TRUE(HasRecordingAt(x, y));
|
|
|
|
|