| Index: cc/layers/picture_layer_impl.h
|
| diff --git a/cc/layers/picture_layer_impl.h b/cc/layers/picture_layer_impl.h
|
| index 03316dcd011b39dcfee78187d45dc73035c2c2a7..50abaa86cecb6e7cfd3e35339e24167f4a25b098 100644
|
| --- a/cc/layers/picture_layer_impl.h
|
| +++ b/cc/layers/picture_layer_impl.h
|
| @@ -30,13 +30,10 @@ class CC_EXPORT PictureLayerImpl
|
| : public LayerImpl,
|
| NON_EXPORTED_BASE(public PictureLayerTilingClient) {
|
| public:
|
| - static scoped_ptr<PictureLayerImpl> Create(
|
| - LayerTreeImpl* tree_impl,
|
| - int id,
|
| - bool is_mask,
|
| - scoped_refptr<SyncedScrollOffset> scroll_offset) {
|
| - return make_scoped_ptr(
|
| - new PictureLayerImpl(tree_impl, id, is_mask, scroll_offset));
|
| + static scoped_ptr<PictureLayerImpl> Create(LayerTreeImpl* tree_impl,
|
| + int id,
|
| + bool is_mask) {
|
| + return make_scoped_ptr(new PictureLayerImpl(tree_impl, id, is_mask));
|
| }
|
| ~PictureLayerImpl() override;
|
|
|
| @@ -103,10 +100,7 @@ class CC_EXPORT PictureLayerImpl
|
| friend class LayerRasterTileIterator;
|
| using TileRequirementCheck = bool (PictureLayerTiling::*)(const Tile*) const;
|
|
|
| - PictureLayerImpl(LayerTreeImpl* tree_impl,
|
| - int id,
|
| - bool is_mask,
|
| - scoped_refptr<SyncedScrollOffset> scroll_offset);
|
| + PictureLayerImpl(LayerTreeImpl* tree_impl, int id, bool is_mask);
|
| PictureLayerTiling* AddTiling(float contents_scale);
|
| void RemoveAllTilings();
|
| void AddTilingsForRasterScale();
|
|
|