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

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

Issue 2450663004: DevTools: do not allow using 'this' before call into super. (Closed)
Patch Set: rebaselined Created 4 years, 2 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/devtools/front_end/sources/OpenResourceDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
index 5c74dd08fd320e3c95ce0c5245c8430daf28f2e7..5c1d6fc9c6635284bafb1c57e53acede68de869f 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
@@ -88,8 +88,8 @@ WebInspector.OpenResourceDialog.show = function(sourcesView, query, defaultScore
*/
WebInspector.SelectUISourceCodeForProjectTypesDialog = function(types, callback)
{
- this._types = types;
WebInspector.FilteredUISourceCodeListDelegate.call(this);
+ this._types = types;
this._callback = callback;
};

Powered by Google App Engine
This is Rietveld 408576698