| Index: third_party/WebKit/Source/modules/cachestorage/CacheStorage.h
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.h b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.h
|
| index baa06c1624592a11e5a589f9e56016f668ddfdb5..aa3622bf495bb329a746a27689c13d473ef1558d 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.h
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.h
|
| @@ -25,7 +25,7 @@ class CacheStorage final : public GarbageCollectedFinalized<CacheStorage>, publi
|
| DEFINE_WRAPPERTYPEINFO();
|
| WTF_MAKE_NONCOPYABLE(CacheStorage);
|
| public:
|
| - static CacheStorage* create(WeakPtrWillBeRawPtr<GlobalFetch::ScopedFetcher>, WebServiceWorkerCacheStorage*);
|
| + static CacheStorage* create(RawPtr<GlobalFetch::ScopedFetcher>, WebServiceWorkerCacheStorage*);
|
| ~CacheStorage();
|
| void dispose();
|
|
|
| @@ -47,10 +47,10 @@ private:
|
| friend class WithCacheCallbacks;
|
| friend class DeleteCallbacks;
|
|
|
| - CacheStorage(WeakPtrWillBeRawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCacheStorage>);
|
| + CacheStorage(RawPtr<GlobalFetch::ScopedFetcher>, PassOwnPtr<WebServiceWorkerCacheStorage>);
|
| ScriptPromise matchImpl(ScriptState*, const Request*, const CacheQueryOptions&);
|
|
|
| - WeakPtrWillBeMember<GlobalFetch::ScopedFetcher> m_scopedFetcher;
|
| + Member<GlobalFetch::ScopedFetcher> m_scopedFetcher;
|
| OwnPtr<WebServiceWorkerCacheStorage> m_webCacheStorage;
|
| HeapHashMap<String, Member<Cache>> m_nameToCacheMap;
|
| };
|
|
|