Index: chrome/browser/component_updater/component_updater_resource_throttle.cc |
diff --git a/chrome/browser/component_updater/component_updater_resource_throttle.cc b/chrome/browser/component_updater/component_updater_resource_throttle.cc |
index a18041991dd9087e20b0ec1bad9946691595ebfd..5295fe77793cb91ffd6dcbf88f67c577c1c32f5c 100644 |
--- a/chrome/browser/component_updater/component_updater_resource_throttle.cc |
+++ b/chrome/browser/component_updater/component_updater_resource_throttle.cc |
@@ -32,7 +32,8 @@ class CUResourceThrottle : public content::ResourceThrottle, |
// Overriden from ResourceThrottle. |
void WillStartRequest(bool* defer) override; |
- void WillRedirectRequest(const GURL& new_url, bool* defer) override; |
+ void WillRedirectRequest(const net::RedirectInfo& redirect_info, |
+ bool* defer) override; |
const char* GetNameForLogging() const override; |
// Component updater calls this function via PostTask to unblock the request. |
@@ -63,7 +64,8 @@ void CUResourceThrottle::WillStartRequest(bool* defer) { |
} |
} |
-void CUResourceThrottle::WillRedirectRequest(const GURL& new_url, bool* defer) { |
+void CUResourceThrottle::WillRedirectRequest( |
+ const net::RedirectInfo& redirect_info, bool* defer) { |
WillStartRequest(defer); |
} |