| Index: third_party/WebKit/Source/modules/cachestorage/Cache.h
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/Cache.h b/third_party/WebKit/Source/modules/cachestorage/Cache.h
|
| index 305de3342ec701114dc737c47621dd49e8ac14cc..e92ab22cfc1a3d61c25ad20e92dbdd1d3f81b3a6 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/Cache.h
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/Cache.h
|
| @@ -32,7 +32,7 @@ class MODULES_EXPORT Cache final : public GarbageCollectedFinalized<Cache>, publ
|
| DEFINE_WRAPPERTYPEINFO();
|
| WTF_MAKE_NONCOPYABLE(Cache);
|
| public:
|
| - static Cache* create(WeakPtrWillBeRawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCache>);
|
| + static Cache* create(RawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCache>);
|
|
|
| // From Cache.idl:
|
| ScriptPromise match(ScriptState*, const RequestInfo&, const CacheQueryOptions&, ExceptionState&);
|
| @@ -54,7 +54,7 @@ private:
|
| class BlobHandleCallbackForPut;
|
| class FetchResolvedForAdd;
|
| friend class FetchResolvedForAdd;
|
| - Cache(WeakPtrWillBeRawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCache>);
|
| + Cache(RawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCache>);
|
|
|
| ScriptPromise matchImpl(ScriptState*, const Request*, const CacheQueryOptions&);
|
| ScriptPromise matchAllImpl(ScriptState*);
|
| @@ -67,7 +67,7 @@ private:
|
|
|
| WebServiceWorkerCache* webCache() const;
|
|
|
| - WeakPtrWillBeMember<GlobalFetch::ScopedFetcher> m_scopedFetcher;
|
| + Member<GlobalFetch::ScopedFetcher> m_scopedFetcher;
|
| OwnPtr<WebServiceWorkerCache> m_webCache;
|
| };
|
|
|
|
|