| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClients.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| index 4805bf94adb72b94385935d1d69b402f9f538df2..85cad8aa264bc55917cb861d8408fb4a4562974d 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| @@ -76,7 +76,7 @@ public:
|
| m_resolver->resolve();
|
| return;
|
| }
|
| - m_resolver->resolve(ServiceWorkerClient::take(m_resolver, client.release()));
|
| + m_resolver->resolve(ServiceWorkerClient::take(m_resolver, std::move(client)));
|
| }
|
|
|
| void onError(const WebServiceWorkerError& error) override
|
|
|