| 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 51986a5d2831aac379c0102b5fe6b4a6c880f9f9..055b675f7a019e3488ad91d53e930d4f944fed1f 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.VBoxWithToolbarItems}
|
| + * @extends {WebInspector.View}
|
| */
|
| WebInspector.DOMStorageItemsView = function(domStorage)
|
| {
|
| - WebInspector.VBoxWithToolbarItems.call(this);
|
| + WebInspector.View.call(this, WebInspector.UIString("DOM Storage"));
|
|
|
| this.domStorage = domStorage;
|
|
|
| @@ -259,5 +259,5 @@ WebInspector.DOMStorageItemsView.prototype = {
|
| this.domStorage.removeItem(node.data.key);
|
| },
|
|
|
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|