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

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

Issue 260083007: Replace chrome://network implementation with networkConfig API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + Address feedback Created 6 years, 7 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
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title id="network" i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://network/network.css">
7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://network/strings.js"></script>
10 <script src="chrome://network/network.js"></script>
11 </head>
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
13 <p i18n-content="autoRefreshText"></p>
14 <h3>Event Log (Newest first):</h3>
15 <div id="log-level-container">
16 <button id="log-refresh" i18n-content="logRefreshText"></button>
17 <label i18n-content="logLevelShowText"></label>
18 <input id="log-error" type="checkbox">
19 <label for="log-error" i18n-content="logLevelErrorText"></label>
20 <input id="log-user" type="checkbox">
21 <label for="log-user" i18n-content="logLevelUserText"></label>
22 <input id="log-event" type="checkbox">
23 <label for="log-event" i18n-content="logLevelEventText"></label>
24 <input id="log-debug" type="checkbox">
25 <label for="log-debug" i18n-content="logLevelDebugText"></label>
26 <input id="log-fileinfo" type="checkbox">
27 <label for="log-fileinfo" i18n-content="logLevelFileinfoText"></label>
28 <input id="log-timedetail" type="checkbox">
29 <label for="log-timedetail" i18n-content="logLevelTimeDetailText"></label>
30 </div>
31 <div id="network-log-container">
32 </div>
33 <h3>Networks: </h3>
34 <table id="network-state-table" class="state-table">
35 <tr class="state-table-header">
36 <td></td>
37 <td>Path</td>
38 <td>GUID</td>
39 <td>Name</td>
40 <td>Type</td>
41 <td>State</td>
42 <td>Profile</td>
43 <td>Connect</td>
44 <td>Error</td>
45 <td>Security</td>
46 <td>Technology</td>
47 <td>Activation</td>
48 <td>Roaming</td>
49 <td>OOC</td>
50 <td>Strength</td>
51 </tr>
52 </table>
53 <h3>Favorites: </h3>
54 <table id="favorite-state-table" class="state-table">
55 <tr class="state-table-header">
56 <td></td>
57 <td>Path</td>
58 <td>GUID</td>
59 <td>Name</td>
60 <td>Type</td>
61 <td>Profile</td>
62 <td>ONC Source</td>
63 </tr>
64 </table>
65 <script src="chrome://resources/js/i18n_template2.js"></script>
66 </body>
67 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/network.css ('k') | chrome/browser/resources/chromeos/network.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698