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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js

Issue 2629073004: ac (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js b/third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js
index 8768ac0740db7246ab2a2fda1f33365d3eaeff5c..beee9e9cee6a765d69c38b7cecd9fe1ed1ac2aeb 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js
@@ -401,18 +401,20 @@ Sources.SourceMapNamesResolver.RemoteObject = class extends SDK.RemoteObject {
/**
* @override
+ * @param {boolean} generatePreview
* @param {function(?Array.<!SDK.RemoteObjectProperty>, ?Array.<!SDK.RemoteObjectProperty>)} callback
*/
- getOwnProperties(callback) {
- this._object.getOwnProperties(callback);
+ getOwnProperties(generatePreview, callback) {
+ this._object.getOwnProperties(generatePreview, callback);
}
/**
* @override
* @param {boolean} accessorPropertiesOnly
+ * @param {boolean} generatePreview
* @param {function(?Array<!SDK.RemoteObjectProperty>, ?Array<!SDK.RemoteObjectProperty>)} callback
*/
- getAllProperties(accessorPropertiesOnly, callback) {
+ getAllProperties(accessorPropertiesOnly, generatePreview, callback) {
/**
* @param {?Array.<!SDK.RemoteObjectProperty>} properties
* @param {?Array.<!SDK.RemoteObjectProperty>} internalProperties
@@ -443,7 +445,7 @@ Sources.SourceMapNamesResolver.RemoteObject = class extends SDK.RemoteObject {
callback(newProperties, internalProperties);
}
- this._object.getAllProperties(accessorPropertiesOnly, wrappedCallback.bind(this));
+ this._object.getAllProperties(accessorPropertiesOnly, generatePreview, wrappedCallback.bind(this));
}
/**
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698