| Index: cc/trees/layer_tree.h
|
| diff --git a/cc/trees/layer_tree.h b/cc/trees/layer_tree.h
|
| index 5e433c2e3639a89668ec31e875e679a3f41140a8..08bb31b3811c0dc6b194e44cd18626af0e04c01c 100644
|
| --- a/cc/trees/layer_tree.h
|
| +++ b/cc/trees/layer_tree.h
|
| @@ -102,6 +102,8 @@ class CC_EXPORT LayerTree : public MutatorHostClient {
|
| float min_page_scale_factor,
|
| float max_page_scale_factor);
|
| float page_scale_factor() const { return inputs_.page_scale_factor; }
|
| + float min_page_scale_factor() const { return inputs_.min_page_scale_factor; }
|
| + float max_page_scale_factor() const { return inputs_.max_page_scale_factor; }
|
|
|
| void set_background_color(SkColor color) { inputs_.background_color = color; }
|
| SkColor background_color() const { return inputs_.background_color; }
|
| @@ -181,7 +183,8 @@ class CC_EXPORT LayerTree : public MutatorHostClient {
|
|
|
| void SetPropertyTreesNeedRebuild();
|
|
|
| - void PushPropertiesTo(LayerTreeImpl* tree_impl);
|
| + void PushPropertiesTo(LayerTreeImpl* tree_impl,
|
| + float unapplied_page_scale_delta);
|
|
|
| void ToProtobuf(proto::LayerTree* proto, bool inputs_only);
|
| void FromProtobuf(const proto::LayerTree& proto);
|
|
|