| Index: third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| index 9ee0058581b523bf06e11d03395b0f681a853e5b..5742d04c5b14f9ae5a6320c8c51e8c99ab9e2097 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| @@ -29,11 +29,11 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.VBox}
|
| + * @extends {WebInspector.VBoxWithToolbarItems}
|
| */
|
| WebInspector.CookieItemsView = function(treeElement, cookieDomain)
|
| {
|
| - WebInspector.VBox.call(this);
|
| + WebInspector.VBoxWithToolbarItems.call(this);
|
|
|
| this.element.classList.add("storage-view");
|
|
|
| @@ -59,6 +59,7 @@ WebInspector.CookieItemsView = function(treeElement, cookieDomain)
|
|
|
| WebInspector.CookieItemsView.prototype = {
|
| /**
|
| + * @override
|
| * @return {!Array.<!WebInspector.ToolbarItem>}
|
| */
|
| toolbarItems: function()
|
| @@ -186,5 +187,5 @@ WebInspector.CookieItemsView.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.VBox.prototype
|
| + __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| }
|
|
|