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

Side by Side Diff: chrome/browser/resources/chromeos/network.html

Issue 23441025: Clean up NetworkState members (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 3 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title id="network" i18n-content="titleText"></title> 5 <title id="network" i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://network/network.css"> 6 <link rel="stylesheet" href="chrome://network/network.css">
7 <script src="chrome://resources/js/load_time_data.js"></script> 7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://network/strings.js"></script> 9 <script src="chrome://network/strings.js"></script>
10 <script src="chrome://network/network.js"></script> 10 <script src="chrome://network/network.js"></script>
(...skipping 13 matching lines...) Expand all
24 <input id="log-debug" type="checkbox"> 24 <input id="log-debug" type="checkbox">
25 <label for="log-debug" i18n-content="logLevelDebugText"></label> 25 <label for="log-debug" i18n-content="logLevelDebugText"></label>
26 <input id="log-fileinfo" type="checkbox"> 26 <input id="log-fileinfo" type="checkbox">
27 <label for="log-fileinfo" i18n-content="logLevelFileinfoText"></label> 27 <label for="log-fileinfo" i18n-content="logLevelFileinfoText"></label>
28 </div> 28 </div>
29 <div id="network-log-container"> 29 <div id="network-log-container">
30 </div> 30 </div>
31 <h3>Networks: </h3> 31 <h3>Networks: </h3>
32 <table id="network-status-table"> 32 <table id="network-status-table">
33 <tr class="network-status-table-header"> 33 <tr class="network-status-table-header">
34 <td>Path</td>
35 <td>GUID</td>
34 <td>Name</td> 36 <td>Name</td>
35 <td>Type</td> 37 <td>Type</td>
36 <td>Status</td> 38 <td>Status</td>
37 <td>Profile</td> 39 <td>Profile</td>
38 <td>Connect</td> 40 <td>Connect</td>
39 <td>Error</td> 41 <td>Error</td>
40 <td>IP Addr</td> 42 <td>IP Addr</td>
41 <td>Security</td> 43 <td>Security</td>
42 <td>Technology</td> 44 <td>Technology</td>
43 <td>Activation</td> 45 <td>Activation</td>
44 <td>Roaming</td> 46 <td>Roaming</td>
45 <td>OOC</td> 47 <td>OOC</td>
46 <td>Strength</td> 48 <td>Strength</td>
47 <td>Auto</td>
48 <td>Fav</td>
49 <td>Pri</td>
50 <td>Path</td>
51 </tr> 49 </tr>
52 </table> 50 </table>
53 <script src="chrome://resources/js/i18n_template2.js"></script> 51 <script src="chrome://resources/js/i18n_template2.js"></script>
54 </body> 52 </body>
55 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698