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

Unified Diff: sky/framework/inspector/runtime-agent.sky

Issue 727593004: Wire up the Inspector V8 Debugger (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Actually works Created 6 years, 1 month 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: sky/framework/inspector/runtime-agent.sky
diff --git a/sky/framework/inspector/runtime-agent.sky b/sky/framework/inspector/runtime-agent.sky
index 4bac0ba4df69a0200300dd887433cf6fc2a25872..c0857915715ac013e0697da64bc0c94b2eabe129 100644
--- a/sky/framework/inspector/runtime-agent.sky
+++ b/sky/framework/inspector/runtime-agent.sky
@@ -115,7 +115,10 @@ Runtime.prototype.evaluate = function(params) {
return makeResult(params, value, wasThrown);
}
-Runtime.prototype.getProperties = debug.loggingStub("getProperties");
+Runtime.prototype.getProperties = function(params) {
+ // FIXME: Unclear what this is for.
+ return [];
+}
module.exports = Runtime;
</script>

Powered by Google App Engine
This is Rietveld 408576698