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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js

Issue 2190353004: [DevTools] Replace InjectedScriptHost.suppressWarningsAndCallFunction with hasOwnProperty. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: 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

Powered by Google App Engine
This is Rietveld 408576698