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

Unified Diff: Source/modules/serviceworkers/polyfills/cachePolyfill.js

Issue 329433002: Initial ServiceWorker CacheStorage API polyfill. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: some fixes Created 6 years, 6 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: Source/modules/serviceworkers/polyfills/cachePolyfill.js
diff --git a/Source/modules/serviceworkers/polyfills/cachePolyfill.js b/Source/modules/serviceworkers/polyfills/cachePolyfill.js
index a862886b300b263e07552ac9062c9041056cb76d..294db0f2ac377b560fe54c1c7073a0ed8cb132d9 100644
--- a/Source/modules/serviceworkers/polyfills/cachePolyfill.js
+++ b/Source/modules/serviceworkers/polyfills/cachePolyfill.js
@@ -5,11 +5,10 @@
// A simple, incomplete implementation of the Cache API, intended to facilitate
// end to end serviceworker testing.
-// See https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#cache
+// See https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#cache-objects
// FIXME: Support AbstractResponse/OpaqueResponse correctly.
// FIXME: Serialize the cache.
-// FIXME: Implement CacheStorage API.
// FIXME: Bind all function references.
(function(global) {
var _castToRequest = function(item) {

Powered by Google App Engine
This is Rietveld 408576698