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

Unified Diff: Source/devtools/front_end/sources/AdvancedSearchView.js

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 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: Source/devtools/front_end/sources/AdvancedSearchView.js
diff --git a/Source/devtools/front_end/sources/AdvancedSearchView.js b/Source/devtools/front_end/sources/AdvancedSearchView.js
index fcf4b3d340981c3a5a8e1cbf32c135547ef4edd2..28b1a3650f3dc17ae37ec909dd45ab0e502df7b4 100644
--- a/Source/devtools/front_end/sources/AdvancedSearchView.js
+++ b/Source/devtools/front_end/sources/AdvancedSearchView.js
@@ -194,7 +194,7 @@ WebInspector.AdvancedSearchView.prototype = {
this._updateSearchResultsMessage();
if (!this._searchingView)
- this._searchingView = new WebInspector.EmptyView(WebInspector.UIString("Searching\u2026"));
+ this._searchingView = new WebInspector.EmptyWidget(WebInspector.UIString("Searching\u2026"));
this._searchingView.show(this._searchResultsElement);
},
@@ -244,7 +244,7 @@ WebInspector.AdvancedSearchView.prototype = {
this._resetResults();
if (!this._notFoundView)
- this._notFoundView = new WebInspector.EmptyView(WebInspector.UIString("No matches found."));
+ this._notFoundView = new WebInspector.EmptyWidget(WebInspector.UIString("No matches found."));
this._notFoundView.show(this._searchResultsElement);
this._searchResultsMessageElement.textContent = WebInspector.UIString("No matches found.");
},

Powered by Google App Engine
This is Rietveld 408576698