Index: Source/core/inspector/InjectedScriptHost.cpp |
diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp |
index 69857c59c4d4f6c7be278e315cc069079c1334a6..3279a5d1351323f3d8582af55b6c28323ae1df83 100644 |
--- a/Source/core/inspector/InjectedScriptHost.cpp |
+++ b/Source/core/inspector/InjectedScriptHost.cpp |
@@ -157,6 +157,10 @@ ScriptDebugServer& InjectedScriptHost::scriptDebugServer() |
return m_debuggerAgent->scriptDebugServer(); |
} |
+void InjectedScriptHost::setBreakpoint(const String& scriptId, int lineNumber, int columnNumber) |
+{ |
+ m_debuggerAgent->setBreakpointInFrontend(scriptId, lineNumber, columnNumber); |
+} |
} // namespace WebCore |