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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 645693003: [DevTools] Console Message Storage moved from top local frame to frame host (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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: Source/core/inspector/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index f4eb47574e614f66093944de9f4871770955a5a4..6aa7430f6d958ceaa79eab3894a19696e8996fba 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -481,6 +481,9 @@ interface InspectorConsoleInstrumentation {
class ConsoleMessage;
[Console, Debugger]
+ void addMessageToConsole(FrameHost* frameHost, ConsoleMessage* consoleMessage);
+
+ [Console, Debugger]
void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleMessage);
[Timeline]
@@ -505,6 +508,9 @@ class ConsoleMessage;
void consoleProfileEnd(ExecutionContext* context, const String& title);
[Console]
+ void consoleMessagesCleared(FrameHost* frameHost);
+
+ [Console]
void consoleMessagesCleared(ExecutionContext* context);
}

Powered by Google App Engine
This is Rietveld 408576698