Index: Source/core/inspector/InspectorConsoleAgent.h |
diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h |
index f233ddc595f32af10c85fc9bdc1bc37664ea1bf3..072efaba02683fcd929e9d476b76b6da08b82f73 100644 |
--- a/Source/core/inspector/InspectorConsoleAgent.h |
+++ b/Source/core/inspector/InspectorConsoleAgent.h |
@@ -75,6 +75,7 @@ public: |
void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, ScriptState*, PassRefPtr<ScriptArguments>, unsigned long requestIdentifier = 0); |
void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, const String& scriptId, unsigned lineNumber, unsigned columnNumber = 0, ScriptState* = 0, unsigned long requestIdentifier = 0); |
+ void addMessageToConsole(PassOwnPtr<ConsoleMessage>, bool checkFrontend = false); |
abarth-chromium
2013/07/24 23:59:09
Rather than adding a raw Boolean parameter, consid
Devlin
2013/07/25 01:46:00
Done, but not sure I like the location (InspectorA
|
// FIXME: Remove once we no longer generate stacks outside of Inspector. |
void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptCallStack>, unsigned long requestIdentifier = 0); |