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

Unified Diff: Source/devtools/front_end/ui/EmptyWidget.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
« no previous file with comments | « Source/devtools/front_end/ui/EmptyView.js ('k') | Source/devtools/front_end/ui/Infobar.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/EmptyWidget.js
diff --git a/Source/devtools/front_end/ui/EmptyView.js b/Source/devtools/front_end/ui/EmptyWidget.js
similarity index 93%
rename from Source/devtools/front_end/ui/EmptyView.js
rename to Source/devtools/front_end/ui/EmptyWidget.js
index 821610dd8b28f2424bf5a2514e6398c0106c5576..23eefbda4fe79e2129f81d6d209a68115c260da4 100644
--- a/Source/devtools/front_end/ui/EmptyView.js
+++ b/Source/devtools/front_end/ui/EmptyWidget.js
@@ -32,16 +32,16 @@
* @constructor
* @extends {WebInspector.VBox}
*/
-WebInspector.EmptyView = function(text)
+WebInspector.EmptyWidget = function(text)
{
WebInspector.VBox.call(this);
- this.registerRequiredCSS("ui/emptyView.css");
+ this.registerRequiredCSS("ui/emptyWidget.css");
this.element.classList.add("empty-view");
this.textElement = this.element.createChild("span");
this._text = text;
}
-WebInspector.EmptyView.prototype = {
+WebInspector.EmptyWidget.prototype = {
wasShown: function()
{
this.textElement.textContent = this._text;
« no previous file with comments | « Source/devtools/front_end/ui/EmptyView.js ('k') | Source/devtools/front_end/ui/Infobar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698