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

Side by Side 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: Update grd example to MHz. Insert space before unit. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="details-internet-page" class="page" hidden> 1 <div id="details-internet-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <!-- Network header --> 3 <!-- Network header -->
4 <div id="network-details-header"> 4 <div id="network-details-header">
5 <div id="network-details-title"></div> 5 <div id="network-details-title"></div>
6 <div id="network-details-subtitle"> 6 <div id="network-details-subtitle">
7 <span id="network-details-subtitle-status"></span> 7 <span id="network-details-subtitle-status"></span>
8 <span id="network-details-subtitle-separator"> - </span> 8 <span id="network-details-subtitle-separator"> - </span>
9 <span id="network-details-subtitle-type"></span> 9 <span id="network-details-subtitle-type"></span>
10 </div> 10 </div>
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 </section> 93 </section>
94 <section> 94 <section>
95 <table id="wifi-settings-table"> 95 <table id="wifi-settings-table">
96 <tr> 96 <tr>
97 <td class="option-name" i18n-content="connectionState"></td> 97 <td class="option-name" i18n-content="connectionState"></td>
98 <td id="wifi-connection-state" class="option-value"></td> 98 <td id="wifi-connection-state" class="option-value"></td>
99 <tr> 99 <tr>
100 <td class="option-name" i18n-content="inetSsid"></td> 100 <td class="option-name" i18n-content="inetSsid"></td>
101 <td id="wifi-ssid" class="option-value"></td> 101 <td id="wifi-ssid" class="option-value"></td>
102 </tr> 102 </tr>
103 <tr id="wifi-bssid-entry">
104 <td class="option-name" i18n-content="inetBssid"></td>
105 <td id="wifi-bssid" class="option-value"></td>
106 </tr>
103 <tr> 107 <tr>
104 <td class="option-name" i18n-content="inetAddress"></td> 108 <td class="option-name" i18n-content="inetAddress"></td>
105 <td id="wifi-ip-address" class="option-value"></td> 109 <td id="wifi-ip-address" class="option-value"></td>
106 </tr> 110 </tr>
107 <tr> 111 <tr>
108 <td class="option-name" i18n-content="inetSubnetAddress"></td> 112 <td class="option-name" i18n-content="inetSubnetAddress"></td>
109 <td id="wifi-subnet-address" class="option-value"></td> 113 <td id="wifi-subnet-address" class="option-value"></td>
110 </tr> 114 </tr>
111 <tr> 115 <tr>
112 <td class="option-name" i18n-content="inetGateway"></td> 116 <td class="option-name" i18n-content="inetGateway"></td>
113 <td id="wifi-gateway" class="option-value"></td> 117 <td id="wifi-gateway" class="option-value"></td>
114 </tr> 118 </tr>
115 <tr> 119 <tr>
116 <td class="option-name" i18n-content="inetDns"></td> 120 <td class="option-name" i18n-content="inetDns"></td>
117 <td id="wifi-dns" class="option-value"></td> 121 <td id="wifi-dns" class="option-value"></td>
118 </tr> 122 </tr>
119 <tr id="wifi-security-entry"> 123 <tr id="wifi-security-entry">
120 <td class="options-name" i18n-content="inetEncryption"></td> 124 <td class="options-name" i18n-content="inetEncryption"></td>
121 <td id="wifi-security" class="option-value"></td> 125 <td id="wifi-security" class="option-value"></td>
122 </tr> 126 </tr>
127 <tr>
128 <td class="options-name" i18n-content="inetFrequency"></td>
129 <td id="wifi-frequency" class="option-value"></td>
130 </tr>
131 <tr>
132 <td class="options-name" i18n-content="inetSignalStrength"></td>
133 <td id="wifi-signal-strength" class="option-value"></td>
134 </tr>
123 <tr id="wifi-hardware-address-entry"> 135 <tr id="wifi-hardware-address-entry">
124 <td class="option-name" i18n-content="hardwareAddress"></td> 136 <td class="option-name" i18n-content="hardwareAddress"></td>
125 <td id="wifi-hardware-address" class="option-value"></td> 137 <td id="wifi-hardware-address" class="option-value"></td>
126 </tr> 138 </tr>
127 </table> 139 </table>
128 </section> 140 </section>
129 <section> 141 <section>
130 <table class="option-control-table"> 142 <table class="option-control-table">
131 <tr> 143 <tr>
132 <td id="password-details" class="option-name" 144 <td id="password-details" class="option-name"
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 </button> 548 </button>
537 <button id="details-internet-disconnect" i18n-content="disconnectButton"> 549 <button id="details-internet-disconnect" i18n-content="disconnectButton">
538 </button> 550 </button>
539 <button id="activate-details" i18n-content="activateButton"></button> 551 <button id="activate-details" i18n-content="activateButton"></button>
540 <button id="buyplan-details" i18n-content="buyplanButton"></button> 552 <button id="buyplan-details" i18n-content="buyplanButton"></button>
541 <button id="view-account-details" i18n-content="viewAccountButton"> 553 <button id="view-account-details" i18n-content="viewAccountButton">
542 </button> 554 </button>
543 </div> 555 </div>
544 </div> 556 </div>
545 </div> 557 </div>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options2/chromeos/internet_detail.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698