OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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_ONC_UTILS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_NET_ONC_UTILS_H_ |
| 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chromeos/network/onc/onc_constants.h" |
| 10 |
| 11 namespace base { |
| 12 class DictionaryValue; |
| 13 } |
| 14 |
| 15 namespace chromeos { |
| 16 namespace onc { |
| 17 |
| 18 scoped_ptr<base::DictionaryValue> ConvertOncProxySettingsToProxyConfig( |
| 19 const base::DictionaryValue& onc_proxy_settings); |
| 20 |
| 21 scoped_ptr<base::DictionaryValue> CreateUIData( |
| 22 ONCSource onc_source, |
| 23 const base::DictionaryValue& onc_network); |
| 24 |
| 25 } // onc |
| 26 } // chromeos |
| 27 |
| 28 #endif // CHROME_BROWSER_CHROMEOS_NET_ONC_UTILS_H_ |
OLD | NEW |