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

Unified Diff: Source/core/inspector/InjectedScriptSource.js

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/InjectedScriptSource.js
diff --git a/Source/core/inspector/InjectedScriptSource.js b/Source/core/inspector/InjectedScriptSource.js
index 0cffd8726f444e947f1a73c93f5c1a98ee00b2d0..edd7bd86be013868a0e4f20d9527c5e3bdc68aed 100644
--- a/Source/core/inspector/InjectedScriptSource.js
+++ b/Source/core/inspector/InjectedScriptSource.js
@@ -1154,7 +1154,7 @@ function CommandLineAPI(commandLineAPIImpl, callFrame)
CommandLineAPI.members_ = [
"$", "$$", "$x", "dir", "dirxml", "keys", "values", "profile", "profileEnd",
"monitorEvents", "unmonitorEvents", "inspect", "copy", "clear", "getEventListeners",
- "debug", "undebug", "table"
+ "debug", "undebug", "monitor", "unmonitor", "table"
];
/**
@@ -1313,12 +1313,21 @@ CommandLineAPIImpl.prototype = {
debug: function(fn)
{
- InjectedScriptHost.setBreakpoint(fn);
+ InjectedScriptHost.debugFunction(fn);
},
undebug: function(fn)
{
- InjectedScriptHost.removeBreakpoint(fn);
+ InjectedScriptHost.undebugFunction(fn);
+ },
+
+ monitor: function(fn)
+ {
+ InjectedScriptHost.monitorFunction(fn);
+ },
+
+ unmonitor: function(fn) {
+ InjectedScriptHost.unmonitorFunction(fn);
},
table: function()

Powered by Google App Engine
This is Rietveld 408576698