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

Unified Diff: chrome/common/metrics/proto/system_profile.proto

Issue 12082090: [net] Add WifiPhyMode to SystemProfile (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: responded to isherman's review Created 7 years, 10 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: chrome/common/metrics/proto/system_profile.proto
diff --git a/chrome/common/metrics/proto/system_profile.proto b/chrome/common/metrics/proto/system_profile.proto
index e45132c8b537028771936f55bee94fa3d576e725..833088c234c0afe926b8095ab717db809c4da942 100644
--- a/chrome/common/metrics/proto/system_profile.proto
+++ b/chrome/common/metrics/proto/system_profile.proto
@@ -154,7 +154,7 @@ message SystemProfileProto {
// Information about the network connection.
message Network {
- // Set to true if there was a network change during the lifetime of the log.
+ // Set to true if connection_type changed during the lifetime of the log.
optional bool connection_type_is_ambiguous = 1;
// See net::NetworkChangeNotifier::ConnectionType.
@@ -167,6 +167,21 @@ message SystemProfileProto {
CONNECTION_4G = 5;
}
optional ConnectionType connection_type = 2;
+
+ // Set to true if wifi_phy_mode changed during the lifetime of the log.
+ optional bool wifi_phy_mode_is_ambiguous = 3;
+
+ // See net::WifiPhyMode.
+ enum WifiPhyMode {
+ WIFI_PHY_MODE_NONE = 0;
+ WIFI_PHY_MODE_ANCIENT = 1;
+ WIFI_PHY_MODE_A = 2;
+ WIFI_PHY_MODE_B = 3;
+ WIFI_PHY_MODE_G = 4;
+ WIFI_PHY_MODE_N = 5;
+ WIFI_PHY_MODE_UNKNOWN = 6;
+ }
+ optional WifiPhyMode wifi_phy_mode = 4;
}
optional Network network = 13;
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | net/base/net_util.h » ('j') | net/base/net_util_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698