| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PROXY_CROS_SETTINGS_PARSER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PARSER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PARSER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PARSER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 namespace base { | 12 namespace base { |
| 11 class Value; | 13 class Value; |
| 12 } | 14 } |
| 13 | 15 |
| 14 namespace chromeos { | 16 namespace chromeos { |
| 15 | 17 |
| 16 class UIProxyConfigService; | 18 class UIProxyConfigService; |
| 17 | 19 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 48 // Gets a value from the current proxy configuration on the specified profile. | 50 // Gets a value from the current proxy configuration on the specified profile. |
| 49 bool GetProxyPrefValue(const UIProxyConfigService& config_service, | 51 bool GetProxyPrefValue(const UIProxyConfigService& config_service, |
| 50 const std::string& path, | 52 const std::string& path, |
| 51 base::Value** out_value); | 53 base::Value** out_value); |
| 52 | 54 |
| 53 } // namespace proxy_cros_settings_parser | 55 } // namespace proxy_cros_settings_parser |
| 54 | 56 |
| 55 } // namespace chromeos | 57 } // namespace chromeos |
| 56 | 58 |
| 57 #endif // CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PARSER_H_ | 59 #endif // CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PARSER_H_ |
| OLD | NEW |