| 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.
|
|
|