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

Unified Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Fixed the comments Created 3 years, 7 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/web/AssertMatchingEnums.cpp
diff --git a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
index 8255030f1b68c03aa80a0410820b56e1d1ce607d..d78c72fd84761bad555c8c39677791681cb26bfe 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -99,6 +99,7 @@
#include "public/platform/WebMouseWheelEvent.h"
#include "public/platform/WebPageVisibilityState.h"
#include "public/platform/WebReferrerPolicy.h"
+#include "public/platform/WebScrollBoundaryBehavior.h"
#include "public/platform/WebScrollbar.h"
#include "public/platform/WebScrollbarBehavior.h"
#include "public/platform/WebSelectionBound.h"
@@ -882,6 +883,14 @@ STATIC_ASSERT_ENUM(
WebSettings::AutoplayPolicy::kUserGestureRequiredForCrossOrigin,
AutoplayPolicy::Type::kUserGestureRequiredForCrossOrigin);
+STATIC_ASSERT_ENUM(WebScrollBoundaryBehavior::kScrollBoundaryBehaviorTypeAuto,
+ EScrollBoundaryBehavior::kAuto);
+STATIC_ASSERT_ENUM(
+ WebScrollBoundaryBehavior::kScrollBoundaryBehaviorTypeContain,
+ EScrollBoundaryBehavior::kContain);
+STATIC_ASSERT_ENUM(WebScrollBoundaryBehavior::kScrollBoundaryBehaviorTypeNone,
+ EScrollBoundaryBehavior::kNone);
+
// This ensures that the version number published in
// WebSerializedScriptValueVersion.h matches the serializer's understanding.
// TODO(jbroman): Fix this to also account for the V8-side version. See

Powered by Google App Engine
This is Rietveld 408576698