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

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

Issue 1384463002: Componentize proxy_policy_handler from chrome/browser/net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and updated Created 5 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
« no previous file with comments | « chrome/browser/net/OWNERS ('k') | chrome/browser/net/proxy_policy_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/proxy_policy_handler.h
diff --git a/chrome/browser/net/proxy_policy_handler.h b/chrome/browser/net/proxy_policy_handler.h
deleted file mode 100644
index 08a1c372bf1ae194c7656fb04b7e706c09571560..0000000000000000000000000000000000000000
--- a/chrome/browser/net/proxy_policy_handler.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_NET_PROXY_POLICY_HANDLER_H_
-#define CHROME_BROWSER_NET_PROXY_POLICY_HANDLER_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "components/policy/core/browser/configuration_policy_handler.h"
-
-namespace policy {
-
-class ProxyMap;
-class ProxyErrorMap;
-
-// ConfigurationPolicyHandler for the proxy policies.
-class ProxyPolicyHandler : public ConfigurationPolicyHandler {
- public:
- // Constants for the "Proxy Server Mode" defined in the policies.
- // Note that these diverge from internal presentation defined in
- // ProxyPrefs::ProxyMode for legacy reasons. The following four
- // PolicyProxyModeType types were not very precise and had overlapping use
- // cases.
- enum ProxyModeType {
- // Disable Proxy, connect directly.
- PROXY_SERVER_MODE = 0,
- // Auto detect proxy or use specific PAC script if given.
- PROXY_AUTO_DETECT_PROXY_SERVER_MODE = 1,
- // Use manually configured proxy servers (fixed servers).
- PROXY_MANUALLY_CONFIGURED_PROXY_SERVER_MODE = 2,
- // Use system proxy server.
- PROXY_USE_SYSTEM_PROXY_SERVER_MODE = 3,
-
- MODE_COUNT
- };
-
- ProxyPolicyHandler();
- ~ProxyPolicyHandler() override;
-
- // ConfigurationPolicyHandler methods:
- bool CheckPolicySettings(const PolicyMap& policies,
- PolicyErrorMap* errors) override;
- void ApplyPolicySettings(const PolicyMap& policies,
- PrefValueMap* prefs) override;
-
- private:
- const base::Value* GetProxyPolicyValue(const PolicyMap& policies,
- const char* policy_name);
-
- // Converts the deprecated ProxyServerMode policy value to a ProxyMode value
- // and places the result in |mode_value|. Returns whether the conversion
- // succeeded.
- bool CheckProxyModeAndServerMode(const PolicyMap& policies,
- PolicyErrorMap* errors,
- std::string* mode_value);
-
- DISALLOW_COPY_AND_ASSIGN(ProxyPolicyHandler);
-};
-
-} // namespace policy
-
-#endif // CHROME_BROWSER_NET_PROXY_POLICY_HANDLER_H_
« no previous file with comments | « chrome/browser/net/OWNERS ('k') | chrome/browser/net/proxy_policy_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698