| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 | 9 |
| 10 class ProxyConfigDictionary; | 10 class ProxyConfigDictionary; |
| 11 | 11 |
| 12 namespace user_prefs { |
| 13 class PrefRegistrySyncable; |
| 14 } |
| 15 |
| 12 namespace chromeos { | 16 namespace chromeos { |
| 13 | 17 |
| 14 class NetworkState; | 18 class NetworkState; |
| 15 | 19 |
| 16 namespace proxy_config { | 20 namespace proxy_config { |
| 17 | 21 |
| 18 scoped_ptr<ProxyConfigDictionary> GetProxyConfigForNetwork( | 22 scoped_ptr<ProxyConfigDictionary> GetProxyConfigForNetwork( |
| 19 const NetworkState& network); | 23 const NetworkState& network); |
| 20 | 24 |
| 21 void SetProxyConfigForNetwork(const ProxyConfigDictionary& proxy_config, | 25 void SetProxyConfigForNetwork(const ProxyConfigDictionary& proxy_config, |
| 22 const NetworkState& network); | 26 const NetworkState& network); |
| 23 | 27 |
| 28 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 29 |
| 24 } // namespace proxy_config | 30 } // namespace proxy_config |
| 25 | 31 |
| 26 } // namespace chromeos | 32 } // namespace chromeos |
| 27 | 33 |
| 28 #endif // CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | 34 #endif // CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ |
| OLD | NEW |