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

Unified Diff: chrome/browser/download/download_resource_throttle.h

Issue 893843003: Add RedirectInfo as a redirect parameter to ResourceThrottles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document ResourceThrottle Created 5 years, 10 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: chrome/browser/download/download_resource_throttle.h
diff --git a/chrome/browser/download/download_resource_throttle.h b/chrome/browser/download/download_resource_throttle.h
index 1795dbe2e2786566e46e4ac129710251a06cd18c..4c1940f9ede18a0d7dc02d210763adff4a8053d6 100644
--- a/chrome/browser/download/download_resource_throttle.h
+++ b/chrome/browser/download/download_resource_throttle.h
@@ -30,7 +30,8 @@ class DownloadResourceThrottle
// content::ResourceThrottle implementation:
void WillStartRequest(bool* defer) override;
- void WillRedirectRequest(const GURL& new_url, bool* defer) override;
+ void WillRedirectRequest(const net::RedirectInfo& redirect_info,
+ bool* defer) override;
void WillProcessResponse(bool* defer) override;
const char* GetNameForLogging() const override;

Powered by Google App Engine
This is Rietveld 408576698