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

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

Issue 720223002: DevTools: only allow status bar items in status bars. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 years, 1 month 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: 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()
« no previous file with comments | « Source/devtools/front_end/resources/CookieItemsView.js ('k') | Source/devtools/front_end/resources/DatabaseQueryView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698