Index: cc/trees/layer_tree_host_impl.h |
diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h |
index c248a21ee2e0156b31e16ff5adf1c36476c978c1..1702e0937d505212906760d2446537e3a957fd16 100644 |
--- a/cc/trees/layer_tree_host_impl.h |
+++ b/cc/trees/layer_tree_host_impl.h |
@@ -18,6 +18,7 @@ |
#include "cc/animation/animation_registrar.h" |
#include "cc/animation/scrollbar_animation_controller.h" |
#include "cc/base/cc_export.h" |
+#include "cc/base/synced_property.h" |
#include "cc/debug/micro_benchmark_controller_impl.h" |
#include "cc/input/input_handler.h" |
#include "cc/input/layer_scroll_offset_delegate.h" |
@@ -359,6 +360,8 @@ class CC_EXPORT LayerTreeHostImpl |
void SetDeviceScaleFactor(float device_scale_factor); |
float device_scale_factor() const { return device_scale_factor_; } |
+ void SetPageScaleOnActiveTree(float page_scale_factor); |
+ |
const gfx::Transform& DrawTransform() const; |
scoped_ptr<ScrollAndScaleSet> ProcessScrollDeltas(); |
@@ -489,8 +492,6 @@ class CC_EXPORT LayerTreeHostImpl |
void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers, |
bool need_valid_tile_priorities) const; |
- void SetTopControlsLayoutHeight(float height); |
- |
void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; } |
void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; } |
bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; } |