| 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 e1aa336f48c4f1f2a4180be2c29d35954c637ce0..34470904062ae419416d45d102e516409fc42cbc 100644
|
| --- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| +++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| @@ -90,6 +90,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"
|
| @@ -463,6 +464,14 @@ STATIC_ASSERT_ENUM(
|
| STATIC_ASSERT_ENUM(WebSettings::AutoplayPolicy::kDocumentUserActivationRequired,
|
| AutoplayPolicy::Type::kDocumentUserActivationRequired);
|
|
|
| +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
|
|
|