| Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| index 8fe8e268e8c4c7de9c277ce416c64a90391eab15..1b073c0ac24ac861d84fdd63dbb2211b0868264b 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| @@ -132,6 +132,18 @@ void RemoteFrameClientImpl::frameFocused() const
|
| m_webFrame->client()->frameFocused();
|
| }
|
|
|
| +void RemoteFrameClientImpl::triedDisplayingInsecureContent(SecurityOrigin* origin, const KURL& url) const
|
| +{
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->triedDisplayingInsecureContent(WebSecurityOrigin(origin), url);
|
| +}
|
| +
|
| +void RemoteFrameClientImpl::triedRunningInsecureContent(SecurityOrigin* origin, const KURL& url) const
|
| +{
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->triedRunningInsecureContent(WebSecurityOrigin(origin), url);
|
| +}
|
| +
|
| void RemoteFrameClientImpl::navigate(const ResourceRequest& request, bool shouldReplaceCurrentEntry)
|
| {
|
| if (m_webFrame->client())
|
|
|