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

Unified Diff: third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js

Issue 2814263002: DevTools: Show a list of availble QuickOpen providers (Closed)
Patch Set: Changes Created 3 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/devtools/front_end/quick_open/QuickOpen.js
diff --git a/third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js b/third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js
index 575ae412a28e187cc038d1f8bc354bed5bf28945..d30959dd213a7cbfce6f027fc95bc246a52f2c67 100644
--- a/third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js
+++ b/third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js
@@ -23,6 +23,7 @@ QuickOpen.QuickOpen = class {
var filteredListWidget =
new QuickOpen.FilteredListWidget(null, this._history, quickOpen._queryChanged.bind(quickOpen));
quickOpen._filteredListWidget = filteredListWidget;
+ filteredListWidget.setPlaceholder(Common.UIString('Type \'?\' to see available commands'));
filteredListWidget.showAsDialog();
filteredListWidget.setQuery(query);
}

Powered by Google App Engine
This is Rietveld 408576698