| Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| index 0da00121826741a4ec3cc7479b9128cbd18437fe..94e47ccf3db0379beed73d3c42f29f733861c3e0 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -1049,6 +1049,13 @@ void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde
|
| }
|
| }
|
|
|
| +BlameContext* FrameLoaderClientImpl::frameBlameContext()
|
| +{
|
| + if (!m_webFrame->client())
|
| + return nullptr;
|
| + return m_webFrame->client()->frameBlameContext();
|
| +}
|
| +
|
| PassOwnPtrWillBeRawPtr<LinkResource> FrameLoaderClientImpl::createServiceWorkerLinkResource(HTMLLinkElement* owner)
|
| {
|
| return ServiceWorkerLinkResource::create(owner);
|
|
|