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

Unified Diff: webkit/api/public/WebFrameClient.h

Issue 200110: Fix some mixed content layout tests.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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: webkit/api/public/WebFrameClient.h
===================================================================
--- webkit/api/public/WebFrameClient.h (revision 26025)
+++ webkit/api/public/WebFrameClient.h (working copy)
@@ -198,7 +198,17 @@
virtual void didLoadResourceFromMemoryCache(
WebFrame*, const WebURLRequest&, const WebURLResponse&) = 0;
+ // This frame has displayed inactive content (such as an image) from an
+ // insecure source. Inactive content cannot spread to other frames.
+ virtual void didDisplayInsecureContent(WebFrame*) = 0;
+ // The indicated security origin has run active content (such as a
+ // script) from an insecure source. Note that the insecure content can
+ // spread to other frames in the same origin.
+ virtual void didRunInsecureContent(
+ WebFrame*, const WebString& securityOrigin) = 0;
+
+
// Script notifications ------------------------------------------------
// Script in the page tried to allocate too much memory.

Powered by Google App Engine
This is Rietveld 408576698