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

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

Issue 1890513004: Remove dependency on the DevTools agent for console logs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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 75b6e76b8af471f58f1f4f234e37e669b79a63d3..92d7b3ed0a494f90b80ed14c69f4d88f1440857e 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -670,6 +670,17 @@ STATIC_ASSERT_ENUM(WebHistoryDifferentDocumentLoad, HistoryDifferentDocumentLoad
STATIC_ASSERT_ENUM(WebHistoryScrollRestorationManual, ScrollRestorationManual);
STATIC_ASSERT_ENUM(WebHistoryScrollRestorationAuto, ScrollRestorationAuto);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::XML, XMLMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::JS, JSMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Network, NetworkMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::ConsoleAPI, ConsoleAPIMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Storage, StorageMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::AppCache, AppCacheMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Rendering, RenderingMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Security, SecurityMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Other, OtherMessageSource);
+STATIC_ASSERT_ENUM(WebConsoleMessage::Source::Deprecation, DeprecationMessageSource);
+
STATIC_ASSERT_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel);
STATIC_ASSERT_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel);
STATIC_ASSERT_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLevel);

Powered by Google App Engine
This is Rietveld 408576698