summaryrefslogtreecommitdiffstats
path: root/dom/storage/LocalStorageCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dom/storage/LocalStorageCache.cpp')
-rw-r--r--dom/storage/LocalStorageCache.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/dom/storage/LocalStorageCache.cpp b/dom/storage/LocalStorageCache.cpp
index 4b55482441..16ebe8ca3b 100644
--- a/dom/storage/LocalStorageCache.cpp
+++ b/dom/storage/LocalStorageCache.cpp
@@ -37,8 +37,11 @@ inline uint32_t GetDataSetIndex(bool aPrivateBrowsing,
}
inline uint32_t GetDataSetIndex(const LocalStorage* aStorage) {
+ // A session only mode doesn't exist anymore, so having a separate data set
+ // for it here is basically useless. This code is only kept until we remove
+ // the old / legacy LocalStorage implementation.
return GetDataSetIndex(aStorage->IsPrivateBrowsing(),
- aStorage->IsSessionScopedOrLess());
+ aStorage->IsPrivateBrowsingOrLess());
}
} // namespace
@@ -167,8 +170,8 @@ void LocalStorageCache::NotifyObservers(const LocalStorage* aStorage,
}
inline bool LocalStorageCache::Persist(const LocalStorage* aStorage) const {
- return mPersistent &&
- (aStorage->IsPrivateBrowsing() || !aStorage->IsSessionScopedOrLess());
+ return mPersistent && (aStorage->IsPrivateBrowsing() ||
+ !aStorage->IsPrivateBrowsingOrLess());
}
const nsCString LocalStorageCache::Origin() const {