| Index: cc/test/fake_picture_layer.h
|
| diff --git a/cc/test/fake_picture_layer.h b/cc/test/fake_picture_layer.h
|
| index d3df07b435ac06b824717b0ee6c6870dc17119f7..1ae27b71e8153b7ce621260b920cead0a2ccf050 100644
|
| --- a/cc/test/fake_picture_layer.h
|
| +++ b/cc/test/fake_picture_layer.h
|
| @@ -42,6 +42,10 @@ class FakePictureLayer : public PictureLayer {
|
| force_unsuitable_for_gpu_rasterization_ = flag;
|
| }
|
|
|
| + void set_fixed_tile_size(gfx::Size fixed_tile_size) {
|
| + fixed_tile_size_ = fixed_tile_size;
|
| + }
|
| +
|
| private:
|
| explicit FakePictureLayer(ContentLayerClient* client);
|
| FakePictureLayer(ContentLayerClient* client,
|
| @@ -52,6 +56,7 @@ class FakePictureLayer : public PictureLayer {
|
| bool always_update_resources_;
|
|
|
| bool force_unsuitable_for_gpu_rasterization_;
|
| + gfx::Size fixed_tile_size_;
|
| };
|
|
|
| } // namespace cc
|
|
|