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

Unified Diff: Source/bindings/core/v8/DebuggerScript.js

Issue 1141553003: DevTools: make getInternalProperties work when Debugger is not enabled (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed failing test Created 5 years, 7 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/bindings/core/v8/DebuggerScript.js
diff --git a/Source/bindings/core/v8/DebuggerScript.js b/Source/bindings/core/v8/DebuggerScript.js
index cce9b45f847e6a4d804561bde71dae9576f662c0..b77ea992af0f0cd00b3142043e02773aaa4a04f7 100644
--- a/Source/bindings/core/v8/DebuggerScript.js
+++ b/Source/bindings/core/v8/DebuggerScript.js
@@ -113,20 +113,6 @@ DebuggerScript.getCollectionEntries = function(object)
}
}
-DebuggerScript.getInternalProperties = function(value)
-{
- var properties = ObjectMirror.GetInternalProperties(value);
- var result = [];
- for (var i = 0; i < properties.length; i++) {
- var mirror = properties[i];
- result.push({
- name: mirror.name(),
- value: mirror.value().value()
- });
- }
- return result;
-}
-
DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValue)
{
var mirror = MakeMirror(functionValue);
« no previous file with comments | « LayoutTests/inspector-protocol/runtime/runtime-getProperties.html ('k') | Source/bindings/core/v8/ScriptDebugServer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698