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

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: Rebased 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..c300a684aef4efe20a8caa47dfc1cfa2ff06e381 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -483,6 +483,9 @@ class ConsoleMessage;
[Console, Debugger]
void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleMessage);
+ [Console, Debugger]
+ void addMessageToConsole(FrameHost* frameHost, ConsoleMessage* consoleMessage);
vsevik 2014/10/14 14:34:08 This one should be before the worker one.
kozyatinskiy1 2014/10/14 17:17:47 Done.
+
[Timeline]
void consoleTime([Keep] ExecutionContext* context, const String& title);
@@ -506,6 +509,9 @@ class ConsoleMessage;
[Console]
void consoleMessagesCleared(ExecutionContext* context);
+
+ [Console]
+ void consoleMessagesCleared(FrameHost* frameHost);
}
interface InspectorOverrides {

Powered by Google App Engine
This is Rietveld 408576698