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; |