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

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

Issue 1860743002: Add a flag to change when android's progress bar completes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enum class in core/ Created 4 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 fc049a5942e5d7695fc36f7bc27022c2217b9735..967a8fb6dab602d94058512ccab2ba34a5050dd5 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -749,6 +749,10 @@ STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::Swap);
STATIC_ASSERT_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::DetachType::Remove);
STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap);
+STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::LoadEvent, ProgressBarCompletion::LoadEvent);
+STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoadedAndImages, ProgressBarCompletion::DOMContentLoadedAndImages);
+STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoaded, ProgressBarCompletion::DOMContentLoaded);
+
static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormatVersion, "");
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698