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

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

Issue 16143005: monitor console command implemented. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved command implementation to C++. 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 675c81fc72846d8baeb29f67c3806b6969832113..144f990270967a005eaa475d20eace737e7c173e 100644
--- a/Source/core/inspector/InjectedScriptHost.h
+++ b/Source/core/inspector/InjectedScriptHost.h
@@ -108,8 +108,10 @@ 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 debugFunction(const String& scriptId, int lineNumber, int columnNumber);
+ void undebugFunction(const String& scriptId, int lineNumber, int columnNumber);
+ void monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName);
+ void unmonitorFunction(const String& scriptId, int lineNumber, int columnNumber);
ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }

Powered by Google App Engine
This is Rietveld 408576698