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

Unified Diff: chromeos/network/network_util.h

Issue 11887008: Deprecate ShillNetworkClient and add GeolocationHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unittest Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/network/network_util.h
diff --git a/chromeos/network/network_util.h b/chromeos/network/network_util.h
index 373e9d9d4babfa29a42010deca5cc4ffb18f8244..ce04f988c27bea805d29de2708dd2151fd39a4c8 100644
--- a/chromeos/network/network_util.h
+++ b/chromeos/network/network_util.h
@@ -36,12 +36,12 @@ struct CHROMEOS_EXPORT SMS {
struct CHROMEOS_EXPORT WifiAccessPoint {
WifiAccessPoint();
~WifiAccessPoint();
+ std::string ssid; // The ssid of the WiFi node if available.
std::string mac_address; // The mac address of the WiFi node.
- std::string name; // The SSID of the WiFi node.
- base::Time timestamp; // Timestamp when this AP was detected.
- int signal_strength; // Radio signal strength measured in dBm.
- int signal_to_noise; // Current signal to noise ratio measured in dB.
- int channel; // Wifi channel number.
+ base::Time timestamp; // Timestamp when this AP was detected.
+ int signal_strength; // Radio signal strength measured in dBm.
+ int signal_to_noise; // Current signal to noise ratio measured in dB.
+ int channel; // Wifi channel number.
};
typedef std::vector<WifiAccessPoint> WifiAccessPointVector;

Powered by Google App Engine
This is Rietveld 408576698