| Index: Source/web/AssertMatchingEnums.cpp
|
| diff --git a/Source/web/AssertMatchingEnums.cpp b/Source/web/AssertMatchingEnums.cpp
|
| index 1640f2539b5409f8f84244c1d67357338a5be091..0624629b8f07f201fe1cc1cec246522c812bc24c 100644
|
| --- a/Source/web/AssertMatchingEnums.cpp
|
| +++ b/Source/web/AssertMatchingEnums.cpp
|
| @@ -52,6 +52,7 @@
|
| #include "core/loader/appcache/ApplicationCacheHost.h"
|
| #include "core/page/InjectedStyleSheets.h"
|
| #include "core/page/PageVisibilityState.h"
|
| +#include "core/rendering/compositing/CompositedSelectionBound.h"
|
| #include "core/rendering/style/RenderStyleConstants.h"
|
| #include "modules/geolocation/GeolocationError.h"
|
| #include "modules/geolocation/GeolocationPosition.h"
|
| @@ -99,6 +100,7 @@
|
| #include "public/platform/WebReferrerPolicy.h"
|
| #include "public/platform/WebScrollbar.h"
|
| #include "public/platform/WebScrollbarBehavior.h"
|
| +#include "public/platform/WebSelectionBound.h"
|
| #include "public/platform/WebStorageQuotaError.h"
|
| #include "public/platform/WebStorageQuotaType.h"
|
| #include "public/platform/WebURLRequest.h"
|
| @@ -615,6 +617,10 @@ COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanX, TouchActionPanX);
|
| COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanY, TouchActionPanY);
|
| COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPinchZoom, TouchActionPinchZoom);
|
|
|
| +COMPILE_ASSERT_MATCHING_ENUM(WebSelectionBound::Caret, CompositedSelectionBound::Caret);
|
| +COMPILE_ASSERT_MATCHING_ENUM(WebSelectionBound::SelectionLeft, CompositedSelectionBound::SelectionLeft);
|
| +COMPILE_ASSERT_MATCHING_ENUM(WebSelectionBound::SelectionRight, CompositedSelectionBound::SelectionRight);
|
| +
|
| COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsOff, V8CacheOptionsOff);
|
| COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsParse, V8CacheOptionsParse);
|
| COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode);
|
|
|