diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 21:32:20 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 21:32:20 +0000 |
commit | 6867ba3609ac7ba4f4dee12a4d4bc1e9bcc5bc19 (patch) | |
tree | 3bb0c024094a41502551be6a7965b711117eeefb /chrome/browser/tab_contents/navigation_entry.h | |
parent | 7925a89f2bcf3f9a8bd1918967dc036b494cff2a (diff) | |
download | chromium_src-6867ba3609ac7ba4f4dee12a4d4bc1e9bcc5bc19.zip chromium_src-6867ba3609ac7ba4f4dee12a4d4bc1e9bcc5bc19.tar.gz chromium_src-6867ba3609ac7ba4f4dee12a4d4bc1e9bcc5bc19.tar.bz2 |
Remove vestiges of has_unsafe_content(), which is no longer used.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2049008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46965 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/navigation_entry.h')
-rw-r--r-- | chrome/browser/tab_contents/navigation_entry.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/chrome/browser/tab_contents/navigation_entry.h b/chrome/browser/tab_contents/navigation_entry.h index e679c10..503f1f1 100644 --- a/chrome/browser/tab_contents/navigation_entry.h +++ b/chrome/browser/tab_contents/navigation_entry.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -89,15 +89,6 @@ class NavigationEntry { return (content_status_ & MIXED_CONTENT) != 0; } - // Unsafe content means that this page is served over https but contains - // https sub-resources with cert errors. - void set_has_unsafe_content() { - content_status_ |= UNSAFE_CONTENT; - } - bool has_unsafe_content() const { - return (content_status_ & UNSAFE_CONTENT) != 0; - } - // Raw accessors for all the content status flags. This contains a // combination of any of the ContentStatusFlags defined above. It is used // by some tests for checking and for certain copying. Use the per-status |