| Index: Source/core/inspector/InspectorDebuggerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp
|
| index 5cd3f3a99d8f6f30d615110822d9f62e5602ef13..2d179739b0725ddb50212c439aeb59ca231335a5 100644
|
| --- a/Source/core/inspector/InspectorDebuggerAgent.cpp
|
| +++ b/Source/core/inspector/InspectorDebuggerAgent.cpp
|
| @@ -283,24 +283,14 @@ void InspectorDebuggerAgent::scriptExecutionBlockedByCSP(const String& directive
|
| m_v8DebuggerAgent->breakProgram(InspectorFrontend::Debugger::Reason::CSPViolation, directive.release());
|
| }
|
|
|
| -void InspectorDebuggerAgent::willCallFunction(const DevToolsFunctionInfo& info)
|
| +void InspectorDebuggerAgent::willExecuteScript(int scriptId)
|
| {
|
| - m_v8DebuggerAgent->willCallFunction(info.scriptId());
|
| + m_v8DebuggerAgent->willExecuteScript(scriptId);
|
| }
|
|
|
| -void InspectorDebuggerAgent::didCallFunction()
|
| +void InspectorDebuggerAgent::didExecuteScript()
|
| {
|
| - m_v8DebuggerAgent->didCallFunction();
|
| -}
|
| -
|
| -void InspectorDebuggerAgent::willEvaluateScript()
|
| -{
|
| - m_v8DebuggerAgent->willEvaluateScript();
|
| -}
|
| -
|
| -void InspectorDebuggerAgent::didEvaluateScript()
|
| -{
|
| - m_v8DebuggerAgent->didEvaluateScript();
|
| + m_v8DebuggerAgent->didExecuteScript();
|
| }
|
|
|
| // InspectorBaseAgent overrides.
|
|
|