summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/render_view.h
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-25 21:08:29 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-25 21:08:29 +0000
commite3d60e5dbbe1a30ee38ad470a5d6040011aea60a (patch)
tree7bbbc49baffe53a69b218782ec9ae9c9a5955119 /chrome/renderer/render_view.h
parent62032c25bd0a89863af01c85c197e1fada71ac0c (diff)
downloadchromium_src-e3d60e5dbbe1a30ee38ad470a5d6040011aea60a.zip
chromium_src-e3d60e5dbbe1a30ee38ad470a5d6040011aea60a.tar.gz
chromium_src-e3d60e5dbbe1a30ee38ad470a5d6040011aea60a.tar.bz2
Plumb the new mixed content API callbacks to the tab contents. We'll actually
use these notifications in a future patch. No behavior change. R=agl Review URL: http://codereview.chromium.org/241004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27249 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/render_view.h')
-rw-r--r--chrome/renderer/render_view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
index b5158a4..aeb4562 100644
--- a/chrome/renderer/render_view.h
+++ b/chrome/renderer/render_view.h
@@ -352,9 +352,9 @@ class RenderView : public RenderWidget,
virtual void didLoadResourceFromMemoryCache(
WebKit::WebFrame* frame, const WebKit::WebURLRequest& request,
const WebKit::WebURLResponse&);
- virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {}
+ virtual void didDisplayInsecureContent(WebKit::WebFrame* frame);
virtual void didRunInsecureContent(
- WebKit::WebFrame* frame, const WebKit::WebSecurityOrigin& origin) {}
+ WebKit::WebFrame* frame, const WebKit::WebSecurityOrigin& origin);
virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame);
virtual void didChangeContentsSize(
WebKit::WebFrame* frame, const WebKit::WebSize& size);