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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js

Issue 2608043002: DevTools: extract modules (with extensions) (Closed)
Patch Set: fix externs (PerfUI) 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 | « no previous file | third_party/WebKit/LayoutTests/inspector/components/file-path-scoring.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js
index a8dcea9366c35c0992dee23a9104e068d32f217b..51279f2a8c4faf99bdd8ffb4f7bdcc39d4347719 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js
@@ -1,4 +1,4 @@
-TestRunner.loadLazyModules(["ui_lazy"]).then(test);
+TestRunner.loadLazyModules(["quick_open"]).then(test);
function test() {
TestRunner.addResult("Check to see that FilteredItemSelectionDialog uses proper regex to filter results.");
@@ -6,7 +6,7 @@ function test() {
var overrideShowMatchingItems = true;
var history = [];
- var StubDelegate = class extends UI.FilteredListWidget.Delegate {
+ var StubDelegate = class extends QuickOpen.FilteredListWidget.Delegate {
constructor()
{
super(history);
@@ -31,7 +31,7 @@ function test() {
TestRunner.addResult("Input:" + JSON.stringify(input));
- var filteredSelectionDialog = new UI.FilteredListWidget(delegate);
+ var filteredSelectionDialog = new QuickOpen.FilteredListWidget(delegate);
filteredSelectionDialog.showAsDialog();
var promise = TestRunner.addSniffer(filteredSelectionDialog, "_itemsFilteredForTest").then(accept);
filteredSelectionDialog.setQuery(query);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/components/file-path-scoring.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698