| Index: cc/resources/picture_unittest.cc
|
| diff --git a/cc/resources/picture_unittest.cc b/cc/resources/picture_unittest.cc
|
| index 07faf0cf4a6c557dc5332b85b4a212468e8b00dc..6aa5e06b0a8b68d63c79c055e16efe1be5003356 100644
|
| --- a/cc/resources/picture_unittest.cc
|
| +++ b/cc/resources/picture_unittest.cc
|
| @@ -49,6 +49,8 @@ TEST(PictureTest, AsBase64String) {
|
| scoped_refptr<Picture> one_rect_picture =
|
| Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_NORMALLY);
|
| @@ -74,6 +76,8 @@ TEST(PictureTest, AsBase64String) {
|
| scoped_refptr<Picture> two_rect_picture =
|
| Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_NORMALLY);
|
| @@ -131,6 +135,8 @@ TEST(PictureTest, PixelRefIterator) {
|
|
|
| scoped_refptr<Picture> picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| true,
|
| Picture::RECORD_NORMALLY);
|
| @@ -231,6 +237,8 @@ TEST(PictureTest, PixelRefIteratorNonZeroLayer) {
|
|
|
| scoped_refptr<Picture> picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| true,
|
| Picture::RECORD_NORMALLY);
|
| @@ -354,6 +362,8 @@ TEST(PictureTest, PixelRefIteratorOnePixelQuery) {
|
|
|
| scoped_refptr<Picture> picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| true,
|
| Picture::RECORD_NORMALLY);
|
| @@ -403,6 +413,8 @@ TEST(PictureTest, CreateFromSkpValue) {
|
| scoped_refptr<Picture> one_rect_picture =
|
| Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_NORMALLY);
|
| @@ -440,6 +452,8 @@ TEST(PictureTest, RecordingModes) {
|
|
|
| scoped_refptr<Picture> picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_NORMALLY);
|
| @@ -450,6 +464,8 @@ TEST(PictureTest, RecordingModes) {
|
|
|
| picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_WITH_SK_NULL_CANVAS);
|
| @@ -460,6 +476,8 @@ TEST(PictureTest, RecordingModes) {
|
|
|
| picture = Picture::Create(layer_rect,
|
| &content_layer_client,
|
| + false,
|
| + false,
|
| tile_grid_info,
|
| false,
|
| Picture::RECORD_WITH_PAINTING_DISABLED);
|
|
|