Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(929)

Unified Diff: Source/core/inspector/InjectedScriptHost.cpp

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added a test for undebug command. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InjectedScriptHost.cpp
diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp
index f7fc59f6b2324d252b223532386bfbcd307f56d1..c04f4be5ed19660e7aac2306780df5538d9965e4 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::DebugCommand);
+}
+
+void InjectedScriptHost::removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber)
+{
+ m_debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommand);
+}
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698