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

Unified Diff: content/common/frame_messages.h

Issue 1890513004: Remove dependency on the DevTools agent for console logs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added new enum to WebConsoleMessage to mirror MessageSource and more. 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: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 43dce9b49f971a9b1937edcf922e2612a15f1371..7d96a31a270add926a54055e15f4de816fde0ea8 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -669,6 +669,11 @@ IPC_MESSAGE_ROUTED2(FrameMsg_AddMessageToConsole,
content::ConsoleMessageLevel /* level */,
std::string /* message */)
+// Add a security related message to the console (doesn't go through devtools).
+IPC_MESSAGE_ROUTED2(FrameMsg_AddSecurityMessageToConsole,
+ content::ConsoleMessageLevel /* level */,
+ std::string /* message */)
+
// Request for the renderer to execute JavaScript in the frame's context.
//
// javascript is the string containing the JavaScript to be executed in the

Powered by Google App Engine
This is Rietveld 408576698