Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp

Issue 1550233002: Move mixed content settings histograms into browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fix Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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())

Powered by Google App Engine
This is Rietveld 408576698