| 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 4cf502f3fc6dea00c5fa62eac93cb6954bd8158b..2fd2212c7158144b810a44f44517178c906dff57 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)
|
| {
|
| }
|
|
|