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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h

Issue 2334623003: Store net::ProxyServer in HttpResponseInfo object (Closed)
Patch Set: PS Created 4 years, 3 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: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h
index 34e55553cdd6a7e9911bab5a7d37edf9570bbce5..d21e09a24e9b687518c8ac2620474aae2bed2b6f 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h
@@ -27,10 +27,10 @@
#endif // OS_ANDROID
namespace net {
-class HostPortPair;
class HttpRequestHeaders;
class HttpResponseHeaders;
struct LoadTimingInfo;
+class ProxyServer;
class URLFetcher;
class URLRequestContextGetter;
class URLRequestStatus;
@@ -126,7 +126,7 @@ class DataReductionProxyConfigServiceClient
bool ShouldRetryDueToAuthFailure(
const net::HttpRequestHeaders& request_headers,
const net::HttpResponseHeaders* response_headers,
- const net::HostPortPair& proxy_server,
+ const net::ProxyServer& proxy_server,
const net::LoadTimingInfo& load_timing_info);
protected:

Powered by Google App Engine
This is Rietveld 408576698