(key, oldValue, newValue, isLocalStorage)
| 68 | } |
| 69 | |
| 70 | function itemUpdated(key, oldValue, newValue, isLocalStorage) { |
| 71 | DOMStorage.domStorageItemUpdated({ |
| 72 | key, |
| 73 | oldValue, |
| 74 | newValue, |
| 75 | storageId: { |
| 76 | securityOrigin: '', |
| 77 | isLocalStorage, |
| 78 | storageKey: getStorageKey(), |
| 79 | }, |
| 80 | }); |
| 81 | } |
| 82 | |
| 83 | function itemRemoved(key, isLocalStorage) { |
| 84 | DOMStorage.domStorageItemRemoved({ |
no test coverage detected