Index: Source/devtools/front_end/resources/ResourcesPanel.js |
diff --git a/Source/devtools/front_end/resources/ResourcesPanel.js b/Source/devtools/front_end/resources/ResourcesPanel.js |
index 1e2397b8c3154d84d8f9946e47eb94533b5be598..15315d4ffb77ae5e29d53d0be36634e5eaca7295 100644 |
--- a/Source/devtools/front_end/resources/ResourcesPanel.js |
+++ b/Source/devtools/front_end/resources/ResourcesPanel.js |
@@ -804,6 +804,10 @@ WebInspector.ResourcesPanel.ResourceRevealer.prototype = { |
/** |
* @constructor |
* @extends {TreeElement} |
+ * @param {!WebInspector.ResourcesPanel} storagePanel |
+ * @param {?Object} representedObject |
+ * @param {string} title |
+ * @param {?Array.<string>=} iconClasses |
* @param {boolean=} hasChildren |
* @param {boolean=} noIcon |
*/ |
@@ -937,6 +941,10 @@ WebInspector.BaseStorageTreeElement.prototype = { |
/** |
* @constructor |
* @extends {WebInspector.BaseStorageTreeElement} |
+ * @param {!WebInspector.ResourcesPanel} storagePanel |
+ * @param {string} categoryName |
+ * @param {string} settingsKey |
+ * @param {?Array.<string>=} iconClasses |
* @param {boolean=} noIcon |
*/ |
WebInspector.StorageCategoryTreeElement = function(storagePanel, categoryName, settingsKey, iconClasses, noIcon) |
@@ -1295,6 +1303,7 @@ WebInspector.FrameResourceTreeElement.prototype = { |
/** |
* @constructor |
* @extends {WebInspector.BaseStorageTreeElement} |
+ * @param {!WebInspector.ResourcesPanel} storagePanel |
* @param {!WebInspector.Database} database |
*/ |
WebInspector.DatabaseTreeElement = function(storagePanel, database) |