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

Unified Diff: Source/devtools/front_end/ui/SidebarPane.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/Section.js ('k') | Source/devtools/front_end/ui/SoftContextMenu.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/SidebarPane.js
diff --git a/Source/devtools/front_end/ui/SidebarPane.js b/Source/devtools/front_end/ui/SidebarPane.js
index 922d3910c19022799641763f635fc388b4c5b34e..707f255d767fa0257d418280f4021ad1af3e0298 100644
--- a/Source/devtools/front_end/ui/SidebarPane.js
+++ b/Source/devtools/front_end/ui/SidebarPane.js
@@ -28,12 +28,12 @@
/**
* @constructor
- * @extends {WebInspector.View}
+ * @extends {WebInspector.Widget}
* @param {string} title
*/
WebInspector.SidebarPane = function(title)
{
- WebInspector.View.call(this);
+ WebInspector.Widget.call(this);
this.setMinimumSize(25, 0);
this.element.className = "sidebar-pane"; // Override
@@ -92,7 +92,7 @@ WebInspector.SidebarPane.prototype = {
this._setVisibleCallback(visible)
},
- __proto__: WebInspector.View.prototype
+ __proto__: WebInspector.Widget.prototype
}
/**
@@ -146,11 +146,11 @@ WebInspector.SidebarPaneTitle.prototype = {
/**
* @constructor
- * @extends {WebInspector.View}
+ * @extends {WebInspector.Widget}
*/
WebInspector.SidebarPaneStack = function()
{
- WebInspector.View.call(this);
+ WebInspector.Widget.call(this);
this.setMinimumSize(25, 0);
this.element.className = "sidebar-pane-stack"; // Override
/** @type {!Map.<!WebInspector.SidebarPane, !WebInspector.SidebarPaneTitle>} */
@@ -182,7 +182,7 @@ WebInspector.SidebarPaneStack.prototype = {
pane.element.classList.toggle("hidden", !visible);
},
- __proto__: WebInspector.View.prototype
+ __proto__: WebInspector.Widget.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/ui/Section.js ('k') | Source/devtools/front_end/ui/SoftContextMenu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698