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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js

Issue 2152093002: DevTools: fix compilation for the VBoxes with toolbar items. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lcean Created 4 years, 5 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
Index: third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
index 5cf67e76f5d7000a19b2379df4e96d7527b9fb4c..51986a5d2831aac379c0102b5fe6b4a6c880f9f9 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
@@ -26,11 +26,11 @@
/**
* @constructor
- * @extends {WebInspector.VBox}
+ * @extends {WebInspector.VBoxWithToolbarItems}
*/
WebInspector.DOMStorageItemsView = function(domStorage)
{
- WebInspector.VBox.call(this);
+ WebInspector.VBoxWithToolbarItems.call(this);
this.domStorage = domStorage;
@@ -51,6 +51,7 @@ WebInspector.DOMStorageItemsView = function(domStorage)
WebInspector.DOMStorageItemsView.prototype = {
/**
+ * @override
* @return {!Array.<!WebInspector.ToolbarItem>}
*/
toolbarItems: function()
@@ -258,5 +259,5 @@ WebInspector.DOMStorageItemsView.prototype = {
this.domStorage.removeItem(node.data.key);
},
- __proto__: WebInspector.VBox.prototype
+ __proto__: WebInspector.VBoxWithToolbarItems.prototype
}

Powered by Google App Engine
This is Rietveld 408576698