Index: Source/core/inspector/InjectedScriptHost.cpp |
diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp |
index f7fc59f6b2324d252b223532386bfbcd307f56d1..e1e8cc1f5fb4c8af3517711e559fc8f587410c25 100644 |
--- a/Source/core/inspector/InjectedScriptHost.cpp |
+++ b/Source/core/inspector/InjectedScriptHost.cpp |
@@ -146,6 +146,15 @@ ScriptDebugServer& InjectedScriptHost::scriptDebugServer() |
return m_debuggerAgent->scriptDebugServer(); |
} |
+void InjectedScriptHost::setBreakpoint(const String& scriptId, int lineNumber, int columnNumber) |
+{ |
+ m_debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource); |
+} |
+ |
+void InjectedScriptHost::removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber) |
+{ |
+ m_debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource); |
+} |
} // namespace WebCore |