| Index: third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| index 73c1b65eae7e909e3c67d43e77b7aad96d22c5d4..31528fbc974a47369f34d93bd9ea28195d94fd3a 100644
|
| --- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| @@ -946,19 +946,6 @@ LocalFrameClientImpl::createServiceWorkerProvider() {
|
| return WTF::wrapUnique(m_webFrame->client()->createServiceWorkerProvider());
|
| }
|
|
|
| -bool LocalFrameClientImpl::isControlledByServiceWorker(DocumentLoader& loader) {
|
| - return m_webFrame->client() &&
|
| - m_webFrame->client()->isControlledByServiceWorker(
|
| - *WebDataSourceImpl::fromDocumentLoader(&loader));
|
| -}
|
| -
|
| -int64_t LocalFrameClientImpl::serviceWorkerID(DocumentLoader& loader) {
|
| - if (!m_webFrame->client())
|
| - return -1;
|
| - return m_webFrame->client()->serviceWorkerID(
|
| - *WebDataSourceImpl::fromDocumentLoader(&loader));
|
| -}
|
| -
|
| SharedWorkerRepositoryClient*
|
| LocalFrameClientImpl::sharedWorkerRepositoryClient() {
|
| return m_webFrame->sharedWorkerRepositoryClient();
|
|
|