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

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

Issue 1948583003: [DevTools] Runtime.getProperties on proxy object doesn't call traps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 2369eca6583a38444bc8a579e06006e8a666fc3d..5d5bab54ceb5c0d55e55ba874385d2b3c798be6a 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
@@ -27,12 +27,6 @@ InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj) {}
/**
* @param {*} obj
- * @return {boolean}
- */
-InjectedScriptHostClass.prototype.isTypedArray = function(obj) {}
-
-/**
- * @param {*} obj
* @return {string}
*/
InjectedScriptHostClass.prototype.subtype = function(obj) {}
@@ -83,6 +77,17 @@ InjectedScriptHostClass.prototype.bind = function(value, groupName) {}
*/
InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {}
+/**
+ * @return {!Array<string>}
+ */
+InjectedScriptHostClass.prototype.ownPropertyNames = function(object) {}
+
+/**
+ * @param {!Object} object
+ * @return {Object|undefined}
+ */
+InjectedScriptHostClass.prototype.prototype = function(object) {}
+
/** @type {!InjectedScriptHostClass} */
var InjectedScriptHost;
/** @type {!Window} */

Powered by Google App Engine
This is Rietveld 408576698