| 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 caaf4e7f5a13a4bf076989d0a6b3cf23241d3e5c..044ebcc3c0c344e91533e98998ff11e056371a45 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -875,6 +875,18 @@ void FrameLoaderClientImpl::frameFocused() const
|
| m_webFrame->client()->frameFocused();
|
| }
|
|
|
| +void FrameLoaderClientImpl::triedDisplayingInsecureContent(SecurityOrigin* origin, const KURL& url) const
|
| +{
|
| + if (m_webFrame->client())
|
| + return m_webFrame->client()->triedDisplayingInsecureContent(WebSecurityOrigin(origin), WebURL(url));
|
| +}
|
| +
|
| +void FrameLoaderClientImpl::triedRunningInsecureContent(SecurityOrigin* origin, const KURL& url) const
|
| +{
|
| + if (m_webFrame->client())
|
| + return m_webFrame->client()->triedRunningInsecureContent(WebSecurityOrigin(origin), WebURL(url));
|
| +}
|
| +
|
| void FrameLoaderClientImpl::didChangeName(const String& name)
|
| {
|
| if (!m_webFrame->client())
|
|
|