OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/metrics/wifi_access_point_info_provider_chromeos.h" | 5 #include "components/metrics/net/wifi_access_point_info_provider_chromeos.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
10 #include "chromeos/network/network_configuration_handler.h" | 10 #include "chromeos/network/network_configuration_handler.h" |
11 #include "chromeos/network/network_handler.h" | 11 #include "chromeos/network/network_handler.h" |
12 #include "chromeos/network/network_state.h" | 12 #include "chromeos/network/network_state.h" |
13 #include "chromeos/network/network_state_handler.h" | 13 #include "chromeos/network/network_state_handler.h" |
14 #include "chromeos/network/shill_property_util.h" | 14 #include "chromeos/network/shill_property_util.h" |
15 #include "third_party/cros_system_api/dbus/service_constants.h" | 15 #include "third_party/cros_system_api/dbus/service_constants.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 &wifi_access_point_info_.model_number); | 109 &wifi_access_point_info_.model_number); |
110 vendor_dict->GetStringWithoutPathExpansion( | 110 vendor_dict->GetStringWithoutPathExpansion( |
111 shill::kVendorWPSModelNameProperty, | 111 shill::kVendorWPSModelNameProperty, |
112 &wifi_access_point_info_.model_name); | 112 &wifi_access_point_info_.model_name); |
113 vendor_dict->GetStringWithoutPathExpansion( | 113 vendor_dict->GetStringWithoutPathExpansion( |
114 shill::kVendorWPSDeviceNameProperty, | 114 shill::kVendorWPSDeviceNameProperty, |
115 &wifi_access_point_info_.device_name); | 115 &wifi_access_point_info_.device_name); |
116 vendor_dict->GetStringWithoutPathExpansion(shill::kVendorOUIListProperty, | 116 vendor_dict->GetStringWithoutPathExpansion(shill::kVendorOUIListProperty, |
117 &wifi_access_point_info_.oui_list); | 117 &wifi_access_point_info_.oui_list); |
118 } | 118 } |
OLD | NEW |