| Index: Source/modules/serviceworkers/Cache.cpp
|
| diff --git a/Source/modules/serviceworkers/Cache.cpp b/Source/modules/serviceworkers/Cache.cpp
|
| index 81d757ee77a7b3755f09fd316ab910fa42b78fdd..f768d01486d893b3001c9f804c9234cd8b2956f3 100644
|
| --- a/Source/modules/serviceworkers/Cache.cpp
|
| +++ b/Source/modules/serviceworkers/Cache.cpp
|
| @@ -23,9 +23,9 @@ ScriptPromise rejectAsNotImplemented(ScriptState* scriptState)
|
|
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<Cache> Cache::fromWebServiceWorkerCache(WebServiceWorkerCache* webCache)
|
| +Cache* Cache::fromWebServiceWorkerCache(WebServiceWorkerCache* webCache)
|
| {
|
| - return adoptRefWillBeNoop(new Cache(webCache));
|
| + return new Cache(webCache);
|
| }
|
|
|
| // FIXME: Implement these methods.
|
|
|