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

Unified Diff: Source/devtools/front_end/ui_lazy/DataGrid.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/treeoutline.js ('k') | Source/devtools/front_end/ui_lazy/OverviewGrid.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui_lazy/DataGrid.js
diff --git a/Source/devtools/front_end/ui_lazy/DataGrid.js b/Source/devtools/front_end/ui_lazy/DataGrid.js
index c312c0bd34c80c5d072e62fc0a102ec69ba707ac..83ef0a1249bb47bb7c7aae5e92b83e1ff29aa9e4 100644
--- a/Source/devtools/front_end/ui_lazy/DataGrid.js
+++ b/Source/devtools/front_end/ui_lazy/DataGrid.js
@@ -25,7 +25,7 @@
/**
* @constructor
- * @extends {WebInspector.View}
+ * @extends {WebInspector.Widget}
* @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray
* @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback
* @param {function(!WebInspector.DataGridNode)=} deleteCallback
@@ -34,7 +34,7 @@
*/
WebInspector.DataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback)
{
- WebInspector.View.call(this);
+ WebInspector.Widget.call(this);
this.registerRequiredCSS("ui_lazy/dataGrid.css");
this.element.className = "data-grid"; // Override
@@ -1066,7 +1066,7 @@ WebInspector.DataGrid.prototype = {
CenterResizerOverBorderAdjustment: 3,
- __proto__: WebInspector.View.prototype
+ __proto__: WebInspector.Widget.prototype
}
/** @enum {string} */
« no previous file with comments | « Source/devtools/front_end/ui/treeoutline.js ('k') | Source/devtools/front_end/ui_lazy/OverviewGrid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698