summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/ObjectProxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/ObjectProxy.js')
-rw-r--r--WebCore/inspector/front-end/ObjectProxy.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/WebCore/inspector/front-end/ObjectProxy.js b/WebCore/inspector/front-end/ObjectProxy.js
index 62517b8..ef139c6 100644
--- a/WebCore/inspector/front-end/ObjectProxy.js
+++ b/WebCore/inspector/front-end/ObjectProxy.js
@@ -28,12 +28,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, protoDepth, description, hasChildren)
+WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, description, hasChildren)
{
this.objectId = objectId;
this.injectedScriptId = injectedScriptId;
this.path = path || [];
- this.protoDepth = protoDepth || 0;
this.description = description;
this.hasChildren = hasChildren;
}