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

Unified Diff: chrome/browser/resources/options2/chromeos/internet_detail.html

Issue 10174010: Add BSSID, frequency and signal strength to WiFi details. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with trunk. Created 8 years, 8 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/browser/resources/options2/chromeos/internet_detail.html
diff --git a/chrome/browser/resources/options2/chromeos/internet_detail.html b/chrome/browser/resources/options2/chromeos/internet_detail.html
index e62841173e727cc9bffadb231eeae71f611b81ab..0b518f8962ecae4d5fada1366808ecaa050808cc 100644
--- a/chrome/browser/resources/options2/chromeos/internet_detail.html
+++ b/chrome/browser/resources/options2/chromeos/internet_detail.html
@@ -100,6 +100,10 @@
<td class="option-name" i18n-content="inetSsid"></td>
<td id="wifi-ssid" class="option-value"></td>
</tr>
+ <tr id="wifi-bssid-entry">
+ <td class="option-name" i18n-content="inetBssid"></td>
+ <td id="wifi-bssid" class="option-value"></td>
+ </tr>
<tr>
<td class="option-name" i18n-content="inetAddress"></td>
<td id="wifi-ip-address" class="option-value"></td>
@@ -120,6 +124,14 @@
<td class="options-name" i18n-content="inetEncryption"></td>
<td id="wifi-security" class="option-value"></td>
</tr>
+ <tr>
+ <td class="options-name" i18n-content="inetFrequency"></td>
+ <td id="wifi-frequency" class="option-value"></td>
+ </tr>
+ <tr>
+ <td class="options-name" i18n-content="inetSignalStrength"></td>
+ <td id="wifi-signal-strength" class="option-value"></td>
+ </tr>
<tr id="wifi-hardware-address-entry">
<td class="option-name" i18n-content="hardwareAddress"></td>
<td id="wifi-hardware-address" class="option-value"></td>

Powered by Google App Engine
This is Rietveld 408576698