summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/tab_contents.cc
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-20 00:13:02 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-20 00:13:02 +0000
commit9277111a69aa069feec820d7a31cc33e3e988bdb (patch)
treedc00a9439032bb76eb92ecab34f2edafa8ddfe00 /chrome/browser/tab_contents/tab_contents.cc
parentbe1a48bcd64ea75939f38a9ab264ee99214313bb (diff)
downloadchromium_src-9277111a69aa069feec820d7a31cc33e3e988bdb.zip
chromium_src-9277111a69aa069feec820d7a31cc33e3e988bdb.tar.gz
chromium_src-9277111a69aa069feec820d7a31cc33e3e988bdb.tar.bz2
Add another didRunInsecureContent method.
In order to better log mixed-scripting issues I want to get the URL into Chrome land. This involves a WebKit change ([1]) but, by making this change first, we can decouple of the two changes. [1] https://bugs.webkit.org/show_bug.cgi?id=52384 BUG=none TEST=compile http://codereview.chromium.org/6272003/ git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71881 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.cc')
-rw-r--r--chrome/browser/tab_contents/tab_contents.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 10d7890..bfd1a40 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -1754,7 +1754,7 @@ void TabContents::OnDidDisplayInsecureContent() {
}
void TabContents::OnDidRunInsecureContent(
- const std::string& security_origin) {
+ const std::string& security_origin, const GURL& target_url) {
controller_.ssl_manager()->DidRunInsecureContent(security_origin);
}