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

Unified Diff: content/browser/service_worker/service_worker_script_cache_map.cc

Issue 374873002: Service Worker: Delay stale resource cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: style Created 6 years, 5 months 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: content/browser/service_worker/service_worker_script_cache_map.cc
diff --git a/content/browser/service_worker/service_worker_script_cache_map.cc b/content/browser/service_worker/service_worker_script_cache_map.cc
index 60876b8d71694cdd720ec3c97bcb0365d209e070..3cb87837c07245f86876946cd4f6e0ea2b663599 100644
--- a/content/browser/service_worker/service_worker_script_cache_map.cc
+++ b/content/browser/service_worker/service_worker_script_cache_map.cc
@@ -35,7 +35,7 @@ void ServiceWorkerScriptCacheMap::NotifyStartedCaching(
DCHECK_EQ(kInvalidServiceWorkerResponseId, Lookup(url));
DCHECK(owner_->status() == ServiceWorkerVersion::NEW);
resource_ids_[url] = resource_id;
- context_->storage()->StoreUncommittedReponseId(resource_id);
+ context_->storage()->StoreUncommittedResponseId(resource_id);
}
void ServiceWorkerScriptCacheMap::NotifyFinishedCaching(

Powered by Google App Engine
This is Rietveld 408576698