Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: components/metrics/net/wifi_access_point_info_provider_chromeos.cc

Issue 558873002: Moves NetworkMetricsProvider to //components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed asvitkine comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/metrics/net/wifi_access_point_info_provider_chromeos.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/metrics/net/wifi_access_point_info_provider_chromeos.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698