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

Unified Diff: third_party/WebKit/Source/core/exported/WebViewImpl.cpp

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Update ScrollManager to pass the test. Created 3 years, 4 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: third_party/WebKit/Source/core/exported/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/core/exported/WebViewImpl.cpp b/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
index 5c52e7a87fa51e3f2a03ec1e5eca52c6cf687d13..5990e67c2dca9c14295006b6a0e06bc002dd5730 100644
--- a/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
@@ -1863,6 +1863,12 @@ void WebViewImpl::DidUpdateBrowserControls() {
}
}
+void WebViewImpl::SetScrollBoundaryBehavior(
+ const WebScrollBoundaryBehavior& scroll_boundary_behavior) {
+ if (layer_tree_view_)
+ layer_tree_view_->SetScrollBoundaryBehavior(scroll_boundary_behavior);
+}
+
BrowserControls& WebViewImpl::GetBrowserControls() {
return GetPage()->GetBrowserControls();
}

Powered by Google App Engine
This is Rietveld 408576698