| 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 70d0a8d3d90a02e2447cc5f4ac99fc32a3d9d387..9c58313c25fc225f3e82ae2cb49806cab0ab916f 100644
|
| --- a/cc/test/fake_picture_pile_impl.cc
|
| +++ b/cc/test/fake_picture_pile_impl.cc
|
| @@ -59,6 +59,13 @@ void FakePicturePileImpl::AddRecordingAt(int x, int y) {
|
| UpdateRecordedRegion();
|
| }
|
|
|
| +void FakePicturePileImpl::AddPictureToRecording(
|
| + int x,
|
| + int y,
|
| + scoped_refptr<Picture> picture) {
|
| + picture_list_map_[std::pair<int, int>(x, y)].push_back(picture);
|
| +}
|
| +
|
| void FakePicturePileImpl::RemoveRecordingAt(int x, int y) {
|
| EXPECT_GE(x, 0);
|
| EXPECT_GE(y, 0);
|
|
|