Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: content/public/browser/navigation_throttle.cc

Issue 1530393003: WIP: Move 'X-Frame-Options' checking to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/navigation_throttle.cc
diff --git a/content/public/browser/navigation_throttle.cc b/content/public/browser/navigation_throttle.cc
index ac3b3aa405654418ac2e76e63b2380bc4ed16164..ad4106a60617c4dce0c6caebfba669938d07250a 100644
--- a/content/public/browser/navigation_throttle.cc
+++ b/content/public/browser/navigation_throttle.cc
@@ -16,6 +16,11 @@ NavigationThrottle::ThrottleCheckResult NavigationThrottle::WillStartRequest() {
}
NavigationThrottle::ThrottleCheckResult
+NavigationThrottle::WillProcessResponse() {
+ return NavigationThrottle::PROCEED;
+}
+
+NavigationThrottle::ThrottleCheckResult
NavigationThrottle::WillRedirectRequest() {
return NavigationThrottle::PROCEED;
}

Powered by Google App Engine
This is Rietveld 408576698