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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h

Issue 286013002: Added alternative configuration for the data reduction proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK fix Created 6 years, 7 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_configurator.h
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h b/components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h
index 02f84677817324e1b259b900725ae386808878a5..58dcfab6cbae23af52fad633bac76745690d73f8 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h
@@ -23,10 +23,12 @@ class DataReductionProxyConfigurator {
// |primary_origin| may not be used. If |fallback_restricted|, the
// |fallback_origin| may not be used. If both are restricted, then the
// proxy configuration will be the same as when |Disable()| is called.
+ // If |ssl_origin| is non-empty, it will be used used for HTTPS traffic.
virtual void Enable(bool primary_restricted,
bool fallback_restricted,
const std::string& primary_origin,
- const std::string& fallback_origin) = 0;
+ const std::string& fallback_origin,
+ const std::string& ssl_origin) = 0;
// Disable the data reduction proxy.
virtual void Disable() = 0;

Powered by Google App Engine
This is Rietveld 408576698