| Index: Source/modules/serviceworkers/CacheStorage.cpp
|
| diff --git a/Source/modules/serviceworkers/CacheStorage.cpp b/Source/modules/serviceworkers/CacheStorage.cpp
|
| index 466b54dde746da29e288d092611f85302562e2ba..cd030f1742e903221ef6b49889d2e069644ab858 100644
|
| --- a/Source/modules/serviceworkers/CacheStorage.cpp
|
| +++ b/Source/modules/serviceworkers/CacheStorage.cpp
|
| @@ -58,6 +58,11 @@ public:
|
|
|
| virtual void onSuccess(WebServiceWorkerCache* cache) OVERRIDE
|
| {
|
| + // FIXME: Remove this once content's WebServiceWorkerCache implementation has landed.
|
| + if (!cache) {
|
| + m_resolver->reject("not implemented");
|
| + return;
|
| + }
|
| m_resolver->resolve(Cache::fromWebServiceWorkerCache(cache));
|
| m_resolver.clear();
|
| }
|
|
|