| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| index b87e365b62e0b4752dc432ddba552489c79131a9..7df26aedabc511dfde5bf06ed7487d89393d731d 100644
 | 
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| @@ -153,7 +153,7 @@ ServiceWorker* ServiceWorker::getOrCreate(
 | 
|  ServiceWorker::ServiceWorker(ExecutionContext* executionContext,
 | 
|                               std::unique_ptr<WebServiceWorker::Handle> handle)
 | 
|      : AbstractWorker(executionContext),
 | 
| -      ActiveScriptWrappable(this),
 | 
| +      ActiveScriptWrappable<ServiceWorker>(this),
 | 
|        m_handle(std::move(handle)),
 | 
|        m_wasStopped(false) {
 | 
|    ASSERT(m_handle);
 | 
| 
 |