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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_protocol.cc

Issue 382313003: Add data reduction functionality to all platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add all platforms to data reduction field trial. Created 6 years, 5 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/browser/data_reduction_proxy_protocol.cc
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_protocol.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_protocol.cc
index 1d9cca5c12db6d2b76bde38f9e5a51d2249a4b56..d40058cad0e3169cc2edac93d4019348a92137e3 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_protocol.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_protocol.cc
@@ -57,6 +57,7 @@ bool MaybeBypassProxyAndPrepareToRetry(
if (data_reduction_proxies.first.is_empty())
return false;
+
bengr 2014/07/17 00:11:08 remove blank line.
Not at Google. Contact bengr 2014/07/17 18:10:21 Done.
DataReductionProxyInfo data_reduction_proxy_info;
net::ProxyService::DataReductionProxyBypassType bypass_type =
GetDataReductionProxyBypassType(
@@ -94,6 +95,7 @@ void OnResolveProxyHandler(const GURL& url,
int load_flags,
const DataReductionProxyParams* params,
net::ProxyInfo* result) {
+
bengr 2014/07/17 00:11:08 remove blank line
Not at Google. Contact bengr 2014/07/17 18:10:21 Done.
if ((load_flags & net::LOAD_BYPASS_DATA_REDUCTION_PROXY) &&
DataReductionProxyParams::IsIncludedInCriticalPathBypassFieldTrial() &&
!result->is_empty() &&

Powered by Google App Engine
This is Rietveld 408576698