| 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 12ea268d1042c2c11f8a8e23bfb008f19108e966..122a5a352ef5fce8592beb11c2512420996d8955 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
|
| @@ -28,7 +28,7 @@ Sources.OpenResourceDialog = class extends Sources.FilteredUISourceCodeListDeleg
|
| static show(sourcesView, query, defaultScores, history) {
|
| var dialog = new Sources.OpenResourceDialog(sourcesView, defaultScores, history);
|
| Sources.OpenResourceDialog._instanceForTest = dialog;
|
| - var filteredItemSelectionDialog = new UI.FilteredListWidget(dialog);
|
| + var filteredItemSelectionDialog = new QuickOpen.FilteredListWidget(dialog);
|
| filteredItemSelectionDialog.showAsDialog();
|
| filteredItemSelectionDialog.setQuery(query);
|
| }
|
| @@ -97,7 +97,7 @@ Sources.SelectUISourceCodeForProjectTypesDialog = class extends Sources.Filtered
|
| */
|
| static show(name, types, callback) {
|
| var filteredItemSelectionDialog =
|
| - new UI.FilteredListWidget(new Sources.SelectUISourceCodeForProjectTypesDialog(types, callback));
|
| + new QuickOpen.FilteredListWidget(new Sources.SelectUISourceCodeForProjectTypesDialog(types, callback));
|
| filteredItemSelectionDialog.showAsDialog();
|
| filteredItemSelectionDialog.setQuery(name);
|
| }
|
|
|