| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| index f2d2e79a5c764a6075b9755bd84cb8abc37a45ef..982eea940b551d2c633fa2384d619e24bb2f360e 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| @@ -53,7 +53,7 @@ public:
|
| virtual void stopFetch() OVERRIDE;
|
|
|
| // ServiceWorkerGlobalScope.idl
|
| - PassRefPtr<ServiceWorkerClients> clients();
|
| + PassRefPtrWillBeRawPtr<ServiceWorkerClients> clients();
|
| String scope(ExecutionContext*);
|
| ScriptPromise fetch(ScriptState*, Request*);
|
| ScriptPromise fetch(ScriptState*, const String&);
|
| @@ -73,7 +73,7 @@ private:
|
| ServiceWorkerGlobalScope(const KURL&, const String& userAgent, ServiceWorkerThread*, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients>);
|
| virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
|
|
|
| - RefPtr<ServiceWorkerClients> m_clients;
|
| + RefPtrWillBeMember<ServiceWorkerClients> m_clients;
|
| OwnPtr<FetchManager> m_fetchManager;
|
| };
|
|
|
|
|