Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(345)

Unified Diff: cc/trees/layer_tree_impl.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: rebase Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index a478c795e051bbd341719d391f531c0df3ab0f96..b7595dabc437afe47272c74afa477938223d415b 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/swap_promise.h"
@@ -497,6 +498,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();
@@ -658,6 +664,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_;

Powered by Google App Engine
This is Rietveld 408576698