Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h |
index 40d6128895e8c2ed15bbab4ee3cd2074fcc90ae8..4e822ad78e4d7f0a45254b497410d5cfd0065bc4 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 |