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

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

Issue 16143005: monitor console command implemented. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Replacing set[Debug/Monitor]Breakpoint() by setBreakpoint(..., source,...). 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.h
diff --git a/Source/core/inspector/InjectedScriptHost.h b/Source/core/inspector/InjectedScriptHost.h
index 4b8f7b3d77cfec5a80c59c26b97748c490258898..11122f828785a112efc9882de3a5d5bec7dca5a1 100644
--- a/Source/core/inspector/InjectedScriptHost.h
+++ b/Source/core/inspector/InjectedScriptHost.h
@@ -106,8 +106,8 @@ public:
void copyText(const String& text);
String databaseIdImpl(Database*);
String storageIdImpl(Storage*);
- void setBreakpoint(const String& scriptId, int lineNumber, int columnNumber);
- void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber);
+ void setBreakpoint(const String& scriptId, int lineNumber, int columnNumber, const String& origin, const String& condition);
+ void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber, const String& origin);
ScriptDebugServer& scriptDebugServer();

Powered by Google App Engine
This is Rietveld 408576698