| Index: cc/picture_pile.h
|
| diff --git a/cc/picture_pile.h b/cc/picture_pile.h
|
| index 11bfdfe6ee7d124fd75934354b6a22e63627c305..851f87c7d397b197362f06e492decca56e40f44b 100644
|
| --- a/cc/picture_pile.h
|
| +++ b/cc/picture_pile.h
|
| @@ -29,6 +29,8 @@ public:
|
| void Resize(gfx::Size);
|
| gfx::Size size() const { return size_; }
|
|
|
| + void SetMinContentsScale(float min_contents_scale);
|
| +
|
| // Re-record parts of the picture that are invalid.
|
| // Invalidations are in layer space.
|
| void Update(
|
| @@ -48,6 +50,8 @@ private:
|
| typedef std::list<scoped_refptr<Picture> > Pile;
|
| Pile pile_;
|
| gfx::Size size_;
|
| + float min_contents_scale_;
|
| + int buffer_pixels_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PicturePile);
|
| };
|
|
|