OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | |
7 | |
8 #include "base/memory/scoped_ptr.h" | |
9 #include "chromeos/network/network_state.h" | |
10 | |
11 class ProxyConfigDictionary; | |
12 | |
13 namespace chromeos { | |
14 | |
15 namespace proxy_config { | |
16 | |
17 scoped_ptr<ProxyConfigDictionary> GetProxyConfigOfNetwork( | |
stevenjb
2013/06/06 18:21:12
nit: s/Of/For
Also, should these have success / er
pneubeck (no reviews)
2013/06/07 09:46:10
I agree, that we should go in that direction.
Howe
| |
18 const NetworkState& network); | |
19 | |
20 void SetProxyConfigOfNetwork(const ProxyConfigDictionary& proxy_config, | |
21 const NetworkState& network); | |
stevenjb
2013/06/06 18:21:12
Here too
pneubeck (no reviews)
2013/06/07 09:46:10
Done.
| |
22 | |
23 } // namespace proxy_config | |
24 | |
25 } // namespace chromeos | |
26 | |
27 #endif // CHROME_BROWSER_CHROMEOS_NET_PROXY_CONFIG_HANDLER_H_ | |
OLD | NEW |