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

Unified Diff: chrome/browser/net/pref_proxy_config_service.h

Issue 5701003: Intorduce a separate preference for 'proxy server mode' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 10 years 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/pref_proxy_config_service.h
diff --git a/chrome/browser/net/pref_proxy_config_service.h b/chrome/browser/net/pref_proxy_config_service.h
index a0f6cd0c2ed1effa0d2fc41b48dfc97be3355678..a8cd6b38ca54ac2739f4be4d96b2d06f03c9eed9 100644
--- a/chrome/browser/net/pref_proxy_config_service.h
+++ b/chrome/browser/net/pref_proxy_config_service.h
@@ -92,6 +92,15 @@ class PrefProxyConfigService
public net::ProxyConfigService::Observer,
public PrefProxyConfigTracker::Observer {
public:
+ // Possible types of specifying proxy settings. The numeric values must
+ // correspond to the policy::kPolicy*Proxy*Mode constants.
+ enum ProxyServerMode {
+ DISABLED,
+ AUTO_DETECT,
+ MANUAL,
+ SYSTEM
+ };
+
// Takes ownership of the passed |base_service|.
PrefProxyConfigService(PrefProxyConfigTracker* tracker,
net::ProxyConfigService* base_service);
@@ -105,6 +114,8 @@ class PrefProxyConfigService
static void RegisterUserPrefs(PrefService* user_prefs);
+ static bool IntToMode(int in_value, ProxyServerMode* out_value);
danno 2010/12/14 12:48:17 This could be ModeStringToEnum.
gfeher 2010/12/16 10:42:04 I still need this to convert from policy and prefe
+
private:
// ProxyConfigService::Observer implementation:
virtual void OnProxyConfigChanged(const net::ProxyConfig& config);

Powered by Google App Engine
This is Rietveld 408576698