| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/chromeos/proxy_cros_settings_parser.h" | 5 #include "chrome/browser/chromeos/proxy_cros_settings_parser.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "chrome/browser/chromeos/ui_proxy_config.h" | 9 #include "chrome/browser/chromeos/ui_proxy_config.h" |
| 10 #include "chrome/browser/chromeos/ui_proxy_config_service.h" | 10 #include "chrome/browser/chromeos/ui_proxy_config_service.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 | 13 |
| 14 // Common prefix of all proxy prefs. | 14 // Common prefix of all proxy prefs. |
| 15 const char kProxyPrefsPrefix[] = "cros.session.proxy"; | 15 const char kProxyPrefsPrefix[] = "cros.session.proxy"; |
| 16 | 16 |
| 17 // Names of proxy preferences. | 17 // Names of proxy preferences. |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 } else { | 371 } else { |
| 372 dict->SetBoolean("disabled", false); | 372 dict->SetBoolean("disabled", false); |
| 373 } | 373 } |
| 374 *out_value = dict; | 374 *out_value = dict; |
| 375 return true; | 375 return true; |
| 376 } | 376 } |
| 377 | 377 |
| 378 } // namespace proxy_cros_settings_parser | 378 } // namespace proxy_cros_settings_parser |
| 379 | 379 |
| 380 } // namespace chromeos | 380 } // namespace chromeos |
| OLD | NEW |