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 8fc0f0aad4d26a82859287387a0f1bd82f04e4fe..3a725bb9155b94734db18b5596d68803ffb2d2a3 100644 |
--- a/third_party/WebKit/Source/core/page/ChromeClient.h |
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h |
@@ -45,6 +45,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 |
@@ -143,7 +144,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; |
@@ -324,6 +326,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; |