Index: third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js |
index 25d07542792e920dcef9f86c509bd800928c5e88..21dcd74456cef4068aa4cc49481a2932ac050bbd 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js |
+++ b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js |
@@ -367,16 +367,6 @@ Mirror.prototype.isIterator = function() {} |
* @interface |
* @extends {Mirror} |
*/ |
-function ObjectMirror() {} |
- |
-/** @return {!Array<!PropertyMirror>} */ |
-ObjectMirror.prototype.properties = function() {} |
- |
- |
-/** |
- * @interface |
- * @extends {ObjectMirror} |
- */ |
function FunctionMirror () {} |
/** @return {number} */ |
@@ -415,7 +405,7 @@ function UnresolvedFunctionMirror(value) {} |
/** |
* @interface |
- * @extends {ObjectMirror} |
+ * @extends {Mirror} |
*/ |
function MapMirror () {} |
@@ -428,7 +418,7 @@ MapMirror.prototype.entries = function(limit) {} |
/** |
* @interface |
- * @extends {ObjectMirror} |
+ * @extends {Mirror} |
*/ |
function SetMirror () {} |
@@ -441,7 +431,7 @@ SetMirror.prototype.values = function(limit) {} |
/** |
* @interface |
- * @extends {ObjectMirror} |
+ * @extends {Mirror} |
*/ |
function IteratorMirror () {} |
@@ -454,7 +444,7 @@ IteratorMirror.prototype.preview = function(limit) {} |
/** |
* @interface |
- * @extends {ObjectMirror} |
+ * @extends {Mirror} |
*/ |
function GeneratorMirror () {} |
@@ -472,23 +462,6 @@ GeneratorMirror.prototype.func = function() {} |
* @interface |
* @extends {Mirror} |
*/ |
-function PropertyMirror() |
-{ |
- /** @type {*} */ |
- this.value_; |
-} |
- |
-/** @return {!Mirror} */ |
-PropertyMirror.prototype.value = function() {} |
- |
-/** @return {string} */ |
-PropertyMirror.prototype.name = function() {} |
- |
- |
-/** |
- * @interface |
- * @extends {Mirror} |
- */ |
function FrameMirror() {} |
/** |