| 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 5b87d37ed3e3968f8d1783d72749275df7c7d2c8..9fbcb556b428d2bd0d1817c12ef87fb6f8f69a61 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -929,6 +929,13 @@ void FrameLoaderClientImpl::didChangeFrameOwnerProperties(HTMLFrameElementBase*
|
| m_webFrame->client()->didChangeFrameOwnerProperties(WebFrame::fromFrame(frameElement->contentFrame()), WebFrameOwnerProperties(frameElement->scrollingMode(), frameElement->marginWidth(), frameElement->marginHeight()));
|
| }
|
|
|
| +void FrameLoaderClientImpl::didCancelLoadAfterXFrameOptionsOrCSPDenied()
|
| +{
|
| + if (!m_webFrame->client())
|
| + return;
|
| + m_webFrame->client()->didCancelLoadAfterXFrameOptionsOrCSPDenied();
|
| +}
|
| +
|
| void FrameLoaderClientImpl::dispatchWillOpenWebSocket(WebSocketHandle* handle)
|
| {
|
| m_webFrame->client()->willOpenWebSocket(handle);
|
|
|