| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
|
| index 269ceefeec475c0881fa64238c46bca04b4ea290..fc28f937ffbf4fdee61f1cce50890e1746efa01d 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
|
| @@ -53,7 +53,7 @@ class WebURL;
|
| class WorkerClients;
|
|
|
| // See WebServiceWorkerContextClient for documentation for the methods in this class.
|
| -class MODULES_EXPORT ServiceWorkerGlobalScopeClient : public WillBeHeapSupplement<WorkerClients> {
|
| +class MODULES_EXPORT ServiceWorkerGlobalScopeClient : public HeapSupplement<WorkerClients> {
|
| WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeClient);
|
| DISALLOW_NEW();
|
| public:
|
| @@ -93,7 +93,7 @@ protected:
|
| ServiceWorkerGlobalScopeClient() { }
|
| };
|
|
|
| -MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients*, PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient>);
|
| +MODULES_EXPORT void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients*, RawPtr<ServiceWorkerGlobalScopeClient>);
|
|
|
| } // namespace blink
|
|
|
|
|