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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h

Issue 669163003: Handle disabling data reduction proxy for all platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed bengr's comments Created 6 years, 2 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/net/spdyproxy/data_reduction_proxy_chrome_configurator.h
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h
index 72051708f584d22c2c25363b4efefa6685496208..6dc13f2d58ebf05cf2ade5f692be54e205f59896 100644
--- a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h
@@ -32,6 +32,8 @@ class DataReductionProxyChromeConfigurator
scoped_refptr<base::SequencedTaskRunner> network_task_runner);
~DataReductionProxyChromeConfigurator() override;
+ static void Disable(PrefService* prefs);
bengr 2014/10/28 21:03:41 Don't overload the name. Maybe call this DisableIn
Not at Google. Contact bengr 2014/10/28 22:31:44 Done.
+
void Enable(bool primary_restricted,
bool fallback_restricted,
const std::string& primary_origin,
@@ -61,6 +63,9 @@ class DataReductionProxyChromeConfigurator
private:
FRIEND_TEST_ALL_PREFIXES(DataReductionProxyConfigTest, TestBypassList);
+ static bool ContainsDataReductionProxy(const std::string& server);
+ static bool HasProxy(const std::string& server, const GURL& proxy);
+
PrefService* prefs_;
scoped_refptr<base::SequencedTaskRunner> network_task_runner_;

Powered by Google App Engine
This is Rietveld 408576698