diff options
Diffstat (limited to 'content/browser/frame_host/navigation_entry_impl.cc')
-rw-r--r-- | content/browser/frame_host/navigation_entry_impl.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/content/browser/frame_host/navigation_entry_impl.cc b/content/browser/frame_host/navigation_entry_impl.cc index 5f82ea5..b021d5e 100644 --- a/content/browser/frame_host/navigation_entry_impl.cc +++ b/content/browser/frame_host/navigation_entry_impl.cc @@ -53,7 +53,6 @@ NavigationEntryImpl::NavigationEntryImpl() should_replace_entry_(false), should_clear_history_list_(false), can_load_local_resources_(false), - xss_detected_(false), frame_tree_node_id_(-1) { } @@ -83,7 +82,6 @@ NavigationEntryImpl::NavigationEntryImpl(SiteInstanceImpl* instance, should_replace_entry_(false), should_clear_history_list_(false), can_load_local_resources_(false), - xss_detected_(false), frame_tree_node_id_(-1) { } @@ -312,10 +310,6 @@ bool NavigationEntryImpl::GetCanLoadLocalResources() const { return can_load_local_resources_; } -bool NavigationEntryImpl::GetXssDetected() const { - return xss_detected_; -} - void NavigationEntryImpl::SetFrameToNavigate(const std::string& frame_name) { frame_to_navigate_ = frame_name; } |