| Index: Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| diff --git a/Source/devtools/front_end/resources/DOMStorageItemsView.js b/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| index 059c22bb79671b29b0f86b41cd09704897887d54..97f904a6774270aa20e931286b174ff8377e52a3 100644
|
| --- a/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| +++ b/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| @@ -51,9 +51,12 @@ WebInspector.DOMStorageItemsView = function(domStorage)
|
| }
|
|
|
| WebInspector.DOMStorageItemsView.prototype = {
|
| - get statusBarItems()
|
| + /**
|
| + * @return {!Array.<!WebInspector.StatusBarItem>}
|
| + */
|
| + statusBarItems: function()
|
| {
|
| - return [this.refreshButton.element, this.deleteButton.element];
|
| + return [this.refreshButton, this.deleteButton];
|
| },
|
|
|
| wasShown: function()
|
|
|