diff options
author | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-05 22:11:15 +0000 |
---|---|---|
committer | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-05 22:11:15 +0000 |
commit | 4d234a61e7278881742693aefedb3fbb50f6f362 (patch) | |
tree | 84b201b6dcf75281a3640890b9f39cd5b6e499f0 /content/browser/frame_host/navigation_entry_impl.h | |
parent | 2c71e9ae7b53b112b9f3cb5668f3b59fb4476577 (diff) | |
download | chromium_src-4d234a61e7278881742693aefedb3fbb50f6f362.zip chromium_src-4d234a61e7278881742693aefedb3fbb50f6f362.tar.gz chromium_src-4d234a61e7278881742693aefedb3fbb50f6f362.tar.bz2 |
Revert https://src.chromium.org/viewvc/chrome?view=rev&revision=283728
As of https://src.chromium.org/viewvc/blink?view=rev&revision=179240, Blink
no longer implements the behaviour that corresponds to this change. Everything
is handled blink-side, so remove this support.
Review URL: https://codereview.chromium.org/438733002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/frame_host/navigation_entry_impl.h')
-rw-r--r-- | content/browser/frame_host/navigation_entry_impl.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/content/browser/frame_host/navigation_entry_impl.h b/content/browser/frame_host/navigation_entry_impl.h index c162d22..613f45e 100644 --- a/content/browser/frame_host/navigation_entry_impl.h +++ b/content/browser/frame_host/navigation_entry_impl.h @@ -89,7 +89,6 @@ class CONTENT_EXPORT NavigationEntryImpl virtual void SetRedirectChain(const std::vector<GURL>& redirects) OVERRIDE; virtual const std::vector<GURL>& GetRedirectChain() const OVERRIDE; virtual bool IsRestored() const OVERRIDE; - virtual bool GetXssDetected() const OVERRIDE; // Once a navigation entry is committed, we should no longer track several // pieces of non-persisted state, as documented on the members below. @@ -219,12 +218,6 @@ class CONTENT_EXPORT NavigationEntryImpl frame_tree_node_id_ = frame_tree_node_id; } - // Called when an XSS detected by Blink's XSSAuditor caused the page to - // be blocked. - void set_xss_detected(bool xss_detected) { - xss_detected_ = xss_detected; - } - private: // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING // Session/Tab restore save portions of this class so that it can be recreated @@ -329,10 +322,6 @@ class CONTENT_EXPORT NavigationEntryImpl // value is not needed after the entry commits and is not persisted. bool can_load_local_resources_; - // Set when this entry was blocked by Blink's XSSAuditor. - // TODO(tsepez): persist xss_detected_ (see WARNING section above). - bool xss_detected_; - // If not empty, the name of the frame to navigate. This field is not // persisted, because it is currently only used in tests. std::string frame_to_navigate_; |