Chromium Code Reviews| Index: Source/core/inspector/InspectorInstrumentation.idl |
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl |
| index 24cc03c287289165fed99fb57add0fbb2131a9c9..496b687425f269761c35b5c5111759b9625d49a4 100644 |
| --- a/Source/core/inspector/InspectorInstrumentation.idl |
| +++ b/Source/core/inspector/InspectorInstrumentation.idl |
| @@ -476,17 +476,13 @@ interface InspectorInstrumentation { |
| interface InspectorConsoleInstrumentation { |
| +#include "core/inspector/ConsoleMessage.h" |
| #include "core/inspector/ScriptArguments.h" |
| #include "core/inspector/ScriptCallStack.h" |
| - // 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); |
| - |
| - // 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, PassRefPtr<ConsoleMessage> consoleMessage); |
|
aandrey
2014/08/05 07:35:44
PassRefPtr<ConsoleMessage> -> ConsoleMessage*
othe
kozyatinskiy1
2014/08/08 13:10:26
Done.
|
| [Console, Debugger] |
| void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); |