Chromium Code Reviews| Index: cc/picture_layer_impl.h |
| diff --git a/cc/picture_layer_impl.h b/cc/picture_layer_impl.h |
| index 4288042fecd3950478de24f5f915bf6898ce1107..fdfacf64194a50ef39705c05402bc8dc622756b3 100644 |
| --- a/cc/picture_layer_impl.h |
| +++ b/cc/picture_layer_impl.h |
| @@ -38,12 +38,18 @@ public: |
| // PushPropertiesTo active tree => pending tree |
| void SyncFromActiveLayer(const PictureLayerImpl* other); |
| + void setBounds(const gfx::Size&); |
|
enne (OOO)
2012/12/04 01:13:27
These three functions shadow the LayerImpl impleme
qinmin
2012/12/04 01:39:53
These functions are to check whether bounds/scale
|
| + void setContentBounds(const gfx::Size&); |
| + void setContentsScale(float contentsScaleX, float contentsScaleY); |
| protected: |
| PictureLayerImpl(int id); |
| PictureLayerTilingSet tilings_; |
| PicturePile pile_; |
| + gfx::Transform last_screen_space_transform_; |
| + double last_update_time_; |
| + |
| friend class PictureLayer; |
| DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); |
| }; |