| 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/options/wifi_config_view.h" | 5 #include "chrome/browser/chromeos/options/wifi_config_view.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/chromeos/cros/cros_library.h" | 10 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 11 #include "chrome/browser/chromeos/cros/network_library.h" | 11 #include "chrome/browser/chromeos/cros/network_library.h" |
| 12 #include "chrome/browser/chromeos/enrollment_dialog_view.h" | 12 #include "chrome/browser/chromeos/enrollment_dialog_view.h" |
| 13 #include "chrome/browser/profiles/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
| 14 #include "chromeos/login/login_state.h" | 14 #include "chromeos/login/login_state.h" |
| 15 #include "chromeos/network/network_ui_data.h" | 15 #include "chromeos/network/network_ui_data.h" |
| 16 #include "chromeos/network/onc/onc_constants.h" | 16 #include "chromeos/network/onc/onc_constants.h" |
| 17 #include "grit/chromium_strings.h" | 17 #include "grit/chromium_strings.h" |
| 18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 void WifiConfigView::ParseWiFiEAPUIProperty( | 1258 void WifiConfigView::ParseWiFiEAPUIProperty( |
| 1259 NetworkPropertyUIData* property_ui_data, | 1259 NetworkPropertyUIData* property_ui_data, |
| 1260 Network* network, | 1260 Network* network, |
| 1261 const std::string& key) { | 1261 const std::string& key) { |
| 1262 ParseWiFiUIProperty( | 1262 ParseWiFiUIProperty( |
| 1263 property_ui_data, network, | 1263 property_ui_data, network, |
| 1264 base::StringPrintf("%s.%s", onc::wifi::kEAP, key.c_str())); | 1264 base::StringPrintf("%s.%s", onc::wifi::kEAP, key.c_str())); |
| 1265 } | 1265 } |
| 1266 | 1266 |
| 1267 } // namespace chromeos | 1267 } // namespace chromeos |
| OLD | NEW |