| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| index 772f463aba06f5ee93de95b80cfa2833b7ab31b5..ef6aea593203ce64ae97dd49e30549cbfccf6b47 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| @@ -38,9 +38,9 @@
|
|
|
| namespace blink {
|
|
|
| -class CacheStorage;
|
| class Dictionary;
|
| class FetchManager;
|
| +class FetchStores;
|
| class Request;
|
| class ScriptPromise;
|
| class ScriptState;
|
| @@ -60,7 +60,7 @@ public:
|
| PassRefPtrWillBeRawPtr<ServiceWorkerClients> clients();
|
| String scope(ExecutionContext*);
|
|
|
| - PassRefPtrWillBeRawPtr<CacheStorage> caches(ExecutionContext*);
|
| + PassRefPtrWillBeRawPtr<FetchStores> fetchStores(ExecutionContext*);
|
|
|
| ScriptPromise fetch(ScriptState*, Request*);
|
| ScriptPromise fetch(ScriptState*, Request*, const Dictionary&);
|
| @@ -84,7 +84,7 @@ private:
|
|
|
| RefPtrWillBeMember<ServiceWorkerClients> m_clients;
|
| OwnPtr<FetchManager> m_fetchManager;
|
| - RefPtrWillBeMember<CacheStorage> m_cacheStorage;
|
| + RefPtrWillBeMember<FetchStores> m_fetchStores;
|
| };
|
|
|
| } // namespace blink
|
|
|