| 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 5742d04c5b14f9ae5a6320c8c51e8c99ab9e2097..1b58eee22f67e18f50ec5be09a4089fae8810f9b 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.VBoxWithToolbarItems}
|
| + * @extends {WebInspector.View}
|
| */
|
| WebInspector.CookieItemsView = function(treeElement, cookieDomain)
|
| {
|
| - WebInspector.VBoxWithToolbarItems.call(this);
|
| + WebInspector.View.call(this, WebInspector.UIString("Cookies"));
|
|
|
| this.element.classList.add("storage-view");
|
|
|
| @@ -187,5 +187,5 @@ WebInspector.CookieItemsView.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|