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."); |
}, |