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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js

Issue 638023003: [ServiceWorkerCacheStorage] Blink changes to remove create/get and add open function (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/cache-storage-worker.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js b/LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js
index d02d56cd3fa51e70cd53af99e943c77893e66852..f58c6136dc190dd29c39715f2b03597f85ab350a 100644
--- a/LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js
+++ b/LayoutTests/http/tests/serviceworker/resources/cache-storage-keys-worker.js
@@ -15,7 +15,7 @@ promise_test(function(test) {
})
.then(function() {
return Promise.all(test_cache_list.map(function(key) {
- return self.caches.create(key);
+ return self.caches.open(key);
}));
})
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/cache-storage-worker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698