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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Rebase 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/page/ChromeClient.h
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
index b31b312fe377966a3a4e2bfc16cdafbd4945ee84..9629d016c38045ccd029a300c006f33e61dad21a 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.h
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h
@@ -47,6 +47,7 @@
#include "public/platform/WebDragOperation.h"
#include "public/platform/WebEventListenerProperties.h"
#include "public/platform/WebFocusType.h"
+#include "public/platform/WebScrollBoundaryBehavior.h"
// To avoid conflicts with the CreateWindow macro from the Windows SDK...
#undef CreateWindow
@@ -142,7 +143,8 @@ class CORE_EXPORT ChromeClient : public PlatformChromeClient {
virtual void DidOverscroll(const FloatSize& overscroll_delta,
const FloatSize& accumulated_overscroll,
const FloatPoint& position_in_viewport,
- const FloatSize& velocity_in_viewport) = 0;
+ const FloatSize& velocity_in_viewport,
+ const WebScrollBoundaryBehavior&) = 0;
virtual bool ShouldReportDetailedMessageForSource(LocalFrame&,
const String& source) = 0;
@@ -329,6 +331,8 @@ class CORE_EXPORT ChromeClient : public PlatformChromeClient {
virtual void DidUpdateBrowserControls() const {}
+ virtual void SetScrollBoundaryBehavior(const WebScrollBoundaryBehavior&) {}
+
virtual void RegisterPopupOpeningObserver(PopupOpeningObserver*) = 0;
virtual void UnregisterPopupOpeningObserver(PopupOpeningObserver*) = 0;
virtual void NotifyPopupOpeningObservers() const = 0;
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.h ('k') | third_party/WebKit/Source/core/page/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698