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

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 classes, et al. 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 b1541d5ce2ba00205d3b193998bdbadc7e4132ff..c1014f935065331a824b81bc69f194731c98c8ee 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -756,6 +756,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, ProgressBarCompletionLoadEvent);
+STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoadedAndImages, ProgressBarCompletionDOMContentLoadedAndImages);
+STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoaded, ProgressBarCompletionDOMContentLoaded);
+
static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormatVersion, "");
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698