diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-13 20:38:10 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-13 20:38:10 +0000 |
commit | 3edb2725977bdf321a4b6619cc8558eb2f0ab2d3 (patch) | |
tree | 3d5f6f0abf2ebf152a3d64923ef580588e9d442d | |
parent | 9735027999ff93d95f526ecdc8a0728d20d5f951 (diff) | |
download | chromium_src-3edb2725977bdf321a4b6619cc8558eb2f0ab2d3.zip chromium_src-3edb2725977bdf321a4b6619cc8558eb2f0ab2d3.tar.gz chromium_src-3edb2725977bdf321a4b6619cc8558eb2f0ab2d3.tar.bz2 |
Tweak comment as requested by wtc.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15993 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ssl/ssl_host_state.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ssl/ssl_host_state.h b/chrome/browser/ssl/ssl_host_state.h index 1744960..b42d8cf 100644 --- a/chrome/browser/ssl/ssl_host_state.h +++ b/chrome/browser/ssl/ssl_host_state.h @@ -54,11 +54,11 @@ class SSLHostState : public NonThreadSafe { private: // A BrokenHostEntry is a pair of (host, process_id) that indicates the host - // contains non-HTTPS content in that renderer process. + // contains insecure content in that renderer process. typedef std::pair<std::string, int> BrokenHostEntry; - // Hosts which have been contaminated with non-HTTPS content in the - // specified process. Note that non-HTTPS content can travel between + // Hosts which have been contaminated with insecure content in the + // specified process. Note that insecure content can travel between // same-origin frames in one processs but cannot jump between processes. std::set<BrokenHostEntry> broken_hosts_; |