| Index: third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
|
| index 2ba9a5843765f5c6279917cb9f5fbc954c12b49f..d3fb656110a15dd1b4d89c3d990f90151ed1f195 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
|
| @@ -25,11 +25,11 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.VBox}
|
| + * @extends {WebInspector.VBoxWithToolbarItems}
|
| */
|
| WebInspector.DatabaseTableView = function(database, tableName)
|
| {
|
| - WebInspector.VBox.call(this);
|
| + WebInspector.VBoxWithToolbarItems.call(this);
|
|
|
| this.database = database;
|
| this.tableName = tableName;
|
| @@ -51,6 +51,7 @@ WebInspector.DatabaseTableView.prototype = {
|
| },
|
|
|
| /**
|
| + * @override
|
| * @return {!Array.<!WebInspector.ToolbarItem>}
|
| */
|
| toolbarItems: function()
|
| @@ -142,5 +143,5 @@ WebInspector.DatabaseTableView.prototype = {
|
| this.update();
|
| },
|
|
|
| - __proto__: WebInspector.VBox.prototype
|
| + __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| }
|
|
|