Index: Source/core/inspector/InspectorInstrumentation.idl |
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl |
index 49e6a1aca3d189f038b916a6fff9985aecd1f21b..96f1c0bf2b2f640b3e838f4bc4a22fe807aefaf6 100644 |
--- a/Source/core/inspector/InspectorInstrumentation.idl |
+++ b/Source/core/inspector/InspectorInstrumentation.idl |
@@ -482,14 +482,11 @@ interface InspectorConsoleInstrumentation { |
#include "core/inspector/ScriptArguments.h" |
#include "core/inspector/ScriptCallStack.h" |
aandrey
2014/08/08 15:48:03
unused include
kozyatinskiy1
2014/08/08 15:51:13
Done.
|
- // FIXME: Convert to ScriptArguments to match non-worker context. |
- // Use the same implementation as above as a similar method dispatched on Page. |
- [Console] |
- void addMessageToConsole(ExecutionContext* context, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, unsigned long requestIdentifier = 0); |
+class ConsoleMessage; |
// Use the same implementation as above as a similar method dispatched on Page. |
[Console] |
- void addMessageToConsole(ExecutionContext* context, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, unsigned columnNumber, ScriptState* state, unsigned long requestIdentifier = 0); |
+ void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleMessage); |
[Console, Debugger] |
void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); |