Index: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js |
index 5fba025caab2b819696a12069064858f278a144e..231db61d02249a8e063c77ab33609840821813ef 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js |
+++ b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js |
@@ -39,12 +39,11 @@ InjectedScriptHostClass.prototype.isTypedArray = function(obj) {} |
InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {} |
/** |
- * @param {!Function} fn |
- * @param {*} receiver |
- * @param {!Array.<*>=} argv |
- * @return {*} |
+ * @param {!Object} object |
kozy
2016/07/29 22:11:55
I think we need to rename this method to solve clo
dgozman
2016/07/29 23:30:26
Done.
|
+ * @param {string} propertyName |
+ * @return {boolean} |
*/ |
-InjectedScriptHostClass.prototype.suppressWarningsAndCallFunction = function(fn, receiver, argv) {} |
+InjectedScriptHostClass.prototype.hasOwnProperty = function(object, propertyName) {} |
/** |
* @param {*} value |