| Index: Source/web/AssertMatchingEnums.cpp
|
| diff --git a/Source/web/AssertMatchingEnums.cpp b/Source/web/AssertMatchingEnums.cpp
|
| index 1af54d11cb10569fee9934dc14f12fa2202dc3a6..72b72a48da8e001927fb840b939e778cd1edff97 100644
|
| --- a/Source/web/AssertMatchingEnums.cpp
|
| +++ b/Source/web/AssertMatchingEnums.cpp
|
| @@ -41,6 +41,7 @@
|
| #include "core/editing/SelectionType.h"
|
| #include "core/editing/TextAffinity.h"
|
| #include "core/fileapi/FileError.h"
|
| +#include "core/frame/Frame.h"
|
| #include "core/frame/Settings.h"
|
| #include "core/frame/csp/ContentSecurityPolicy.h"
|
| #include "core/html/HTMLFormElement.h"
|
| @@ -125,6 +126,7 @@
|
| #include "public/web/WebInputEvent.h"
|
| #include "public/web/WebNavigationPolicy.h"
|
| #include "public/web/WebNavigatorContentUtilsClient.h"
|
| +#include "public/web/WebRemoteFrameClient.h"
|
| #include "public/web/WebSandboxFlags.h"
|
| #include "public/web/WebSecurityPolicy.h"
|
| #include "public/web/WebSelection.h"
|
| @@ -722,4 +724,9 @@ STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Modals, SandboxModals);
|
|
|
| STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClient::BeforeUnloadHandler);
|
| STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::UnloadHandler);
|
| +
|
| +STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebFrameClient::DetachType::Remove);
|
| +STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::Swap);
|
| +STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::DetachType::Remove);
|
| +STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap);
|
| } // namespace blink
|
|
|