Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
index 3fe316c52c860af0f79708c76c50a3a0dc0cd067..06409b428fdbf748794662f0a2abdaf7289a72b9 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
@@ -57,10 +57,10 @@ public: |
virtual void stopFetch() OVERRIDE; |
// ServiceWorkerGlobalScope.idl |
- PassRefPtrWillBeRawPtr<ServiceWorkerClients> clients(); |
+ ServiceWorkerClients* clients(); |
String scope(ExecutionContext*); |
- PassRefPtrWillBeRawPtr<CacheStorage> caches(ExecutionContext*); |
+ CacheStorage* caches(ExecutionContext*); |
ScriptPromise fetch(ScriptState*, Request*); |
ScriptPromise fetch(ScriptState*, Request*, const Dictionary&); |
@@ -83,9 +83,9 @@ private: |
virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVERRIDE; |
virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE; |
- RefPtrWillBeMember<ServiceWorkerClients> m_clients; |
+ PersistentWillBeMember<ServiceWorkerClients> m_clients; |
OwnPtr<FetchManager> m_fetchManager; |
- RefPtrWillBeMember<CacheStorage> m_caches; |
+ PersistentWillBeMember<CacheStorage> m_caches; |
}; |
} // namespace blink |