| Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index 00e1a649891f7ba3547314d3a5e6c9d4222666a5..b7d7dc8e4ec6c70fa1a758e23eedeee6a6a65d0d 100644
|
| --- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -62,13 +62,13 @@ void ServiceWorkerGlobalScopeClientImpl::GetClients(
|
| void ServiceWorkerGlobalScopeClientImpl::OpenWindowForClients(
|
| const WebURL& url,
|
| std::unique_ptr<WebServiceWorkerClientCallbacks> callbacks) {
|
| - client_.OpenWindowForClients(url, std::move(callbacks));
|
| + client_.OpenNewTab(url, std::move(callbacks));
|
| }
|
|
|
| void ServiceWorkerGlobalScopeClientImpl::OpenWindowForPaymentHandler(
|
| const WebURL& url,
|
| std::unique_ptr<WebServiceWorkerClientCallbacks> callbacks) {
|
| - client_.OpenWindowForPaymentHandler(url, std::move(callbacks));
|
| + client_.OpenNewPopup(url, std::move(callbacks));
|
| }
|
|
|
| void ServiceWorkerGlobalScopeClientImpl::SetCachedMetadata(const WebURL& url,
|
|
|