| Index: third_party/WebKit/Source/core/inspector/InspectorConsoleAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorConsoleAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorConsoleAgent.cpp
|
| index 0c8429fb1e36289d6cf42f97a7f5d5db2fef3892..4e89947f57f58630d60aa8e1d176fc9950563921 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorConsoleAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorConsoleAgent.cpp
|
| @@ -43,10 +43,10 @@ namespace ConsoleAgentState {
|
| static const char consoleMessagesEnabled[] = "consoleMessagesEnabled";
|
| }
|
|
|
| -InspectorConsoleAgent::InspectorConsoleAgent(V8RuntimeAgent* runtimeAgent)
|
| +InspectorConsoleAgent::InspectorConsoleAgent(V8RuntimeAgent* runtimeAgent, V8DebuggerAgent* debuggerAgent)
|
| : InspectorBaseAgent<InspectorConsoleAgent, protocol::Frontend::Console>("Console")
|
| , m_runtimeAgent(runtimeAgent)
|
| - , m_debuggerAgent(nullptr)
|
| + , m_debuggerAgent(debuggerAgent)
|
| , m_enabled(false)
|
| {
|
| }
|
|
|