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