diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-29 07:26:25 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-29 07:26:25 +0000 |
commit | 4b8d7493f1b6e01017fb9775d7c9c84b115128e1 (patch) | |
tree | 688253bcc108eee06c015964e656a000b286b8ce /chrome/browser/ssl/ssl_host_state.h | |
parent | acab73cf73225002a1405ccca7b71caee4686cf0 (diff) | |
download | chromium_src-4b8d7493f1b6e01017fb9775d7c9c84b115128e1.zip chromium_src-4b8d7493f1b6e01017fb9775d7c9c84b115128e1.tar.gz chromium_src-4b8d7493f1b6e01017fb9775d7c9c84b115128e1.tar.bz2 |
Remove old way of handling mixed content now that we have the new mixed content
API in place.
R=agl
TEST=Covered by our mixed content browser tests
Review URL: http://codereview.chromium.org/248013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27469 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ssl/ssl_host_state.h')
-rw-r--r-- | chrome/browser/ssl/ssl_host_state.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/ssl/ssl_host_state.h b/chrome/browser/ssl/ssl_host_state.h index b42d8cf..5a8d774 100644 --- a/chrome/browser/ssl/ssl_host_state.h +++ b/chrome/browser/ssl/ssl_host_state.h @@ -46,12 +46,6 @@ class SSLHostState : public NonThreadSafe { net::X509Certificate::Policy::Judgment QueryPolicy( net::X509Certificate* cert, const std::string& host); - // Allows mixed content to be visible (non filtered). - void AllowMixedContentForHost(const std::string& host); - - // Returns whether the specified host is allowed to show mixed content. - bool DidAllowMixedContentForHost(const std::string& host); - private: // A BrokenHostEntry is a pair of (host, process_id) that indicates the host // contains insecure content in that renderer process. @@ -65,9 +59,6 @@ class SSLHostState : public NonThreadSafe { // Certificate policies for each host. std::map<std::string, net::X509Certificate::Policy> cert_policy_for_host_; - // Hosts for which we are allowed to show mixed content. - std::set<std::string> allow_mixed_content_for_host_; - DISALLOW_COPY_AND_ASSIGN(SSLHostState); }; |