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

Unified Diff: chrome/browser/ui/webui/chromeos/login/network_state_informer.h

Issue 14846004: Migrate ProxyConfigServiceImpl to NetworkStateHandler and NetworkProfileHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 7 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: chrome/browser/ui/webui/chromeos/login/network_state_informer.h
diff --git a/chrome/browser/ui/webui/chromeos/login/network_state_informer.h b/chrome/browser/ui/webui/chromeos/login/network_state_informer.h
index 16fea0cdb5fba39318cc4fa025eb35592fb0ee8c..bccfb340bb190920e697d39126c8fb570e220b93 100644
--- a/chrome/browser/ui/webui/chromeos/login/network_state_informer.h
+++ b/chrome/browser/ui/webui/chromeos/login/network_state_informer.h
@@ -101,21 +101,6 @@ class NetworkStateInformer
ConnectionType last_network_type() const { return last_network_type_; }
private:
- struct ProxyState {
- ProxyState() : configured(false) {
- }
-
- ProxyState(const std::string& proxy_config, bool configured)
- : proxy_config(proxy_config),
- configured(configured) {
- }
-
- std::string proxy_config;
- bool configured;
- };
-
- typedef std::map<std::string, ProxyState> ProxyStateMap;
-
friend class base::RefCounted<NetworkStateInformer>;
virtual ~NetworkStateInformer();
@@ -138,9 +123,6 @@ class NetworkStateInformer
std::string last_network_service_path_;
ConnectionType last_network_type_;
base::CancelableClosure check_state_;
-
- // Caches proxy state for active networks.
- ProxyStateMap proxy_state_map_;
};
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698