Chromium Code Reviews| 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 19a4f1856d9cfd41482fceb7d27c61114015852a..4450b642e003426f618422e8e37eb7c53789f507 100644 |
| --- a/Source/devtools/front_end/resources/ResourcesPanel.js |
| +++ b/Source/devtools/front_end/resources/ResourcesPanel.js |
| @@ -1412,7 +1412,7 @@ WebInspector.DatabaseTableTreeElement.prototype = { |
| */ |
| WebInspector.ServiceWorkerCacheTreeElement = function(storagePanel) |
| { |
| - WebInspector.StorageCategoryTreeElement.call(this, storagePanel, WebInspector.UIString("ServiceWorkerCache"), "IndexedDB", ["indexed-db-storage-tree-item"]); |
| + WebInspector.StorageCategoryTreeElement.call(this, storagePanel, WebInspector.UIString("Service Worker Cache"), "ServiceWorkerCache", ["indexed-db-storage-tree-item"]); |
| } |
| WebInspector.ServiceWorkerCacheTreeElement.prototype = { |
| @@ -1541,7 +1541,7 @@ WebInspector.ServiceWorkerCacheTreeElement.prototype = { |
| */ |
| WebInspector.SWCacheTreeElement = function(storagePanel, model, cacheId) |
| { |
| - WebInspector.BaseStorageTreeElement.call(this, storagePanel, null, cacheId.name, ["indexed-db-storage-tree-item"]); |
| + WebInspector.BaseStorageTreeElement.call(this, storagePanel, null, cacheId.name, ["indexed-db-object-store-storage-tree-item"]); |
|
vsevik
2014/12/19 07:20:48
should it have service-worker in the class name he
dmurph
2014/12/19 21:45:07
This is for the icon. I added serviceworker speci
|
| this._model = model; |
| this._cacheId = cacheId; |
| } |