Index: cc/trees/layer_tree_impl.h |
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h |
index dc40268bf5d18466318c848cb4b9c74d942fcadb..5473af2696aef11bb35d2ec7523666e33adadf6b 100644 |
--- a/cc/trees/layer_tree_impl.h |
+++ b/cc/trees/layer_tree_impl.h |
@@ -17,6 +17,7 @@ |
#include "cc/base/synced_property.h" |
#include "cc/input/event_listener_properties.h" |
#include "cc/input/layer_selection_bound.h" |
+#include "cc/input/scroll_boundary_behavior.h" |
#include "cc/layers/layer_impl.h" |
#include "cc/layers/layer_list_iterator.h" |
#include "cc/output/begin_frame_args.h" |
@@ -491,6 +492,11 @@ class CC_EXPORT LayerTreeImpl { |
void set_bottom_controls_height(float bottom_controls_height); |
float bottom_controls_height() const { return bottom_controls_height_; } |
+ void set_scroll_boundary_behavior(const ScrollBoundaryBehavior& behavior); |
+ ScrollBoundaryBehavior scroll_boundary_behavior() const { |
+ return scroll_boundary_behavior_; |
+ } |
+ |
void SetPendingPageScaleAnimation( |
std::unique_ptr<PendingPageScaleAnimation> pending_animation); |
std::unique_ptr<PendingPageScaleAnimation> TakePendingPageScaleAnimation(); |
@@ -652,6 +658,8 @@ class CC_EXPORT LayerTreeImpl { |
float top_controls_height_; |
float bottom_controls_height_; |
+ ScrollBoundaryBehavior scroll_boundary_behavior_; |
+ |
// The amount that the browser controls are shown from 0 (hidden) to 1 (fully |
// shown). |
scoped_refptr<SyncedBrowserControls> top_controls_shown_ratio_; |