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

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

Issue 874283006: Add custom Polymer network icon element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge fix Created 5 years, 9 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3
3 <head> 4 <head>
4 <meta charset="utf-8"> 5 <meta charset="utf-8">
5 <title id="network" i18n-content="titleText"></title> 6 <title id="network" i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="chrome://network/network_ui.css"> 8 <link rel="stylesheet" href="chrome://network/network_ui.css">
9 <link rel="import" href="chrome://resources/cr_elements/cr_network_icon/cr_net work_icon.html">
10 <link rel="import" href="chrome://resources/cr_elements/cr_onc/cr_onc_data.htm l">
11 <link rel="import" href="chrome://resources/polymer/paper-button/paper-button. html">
12
8 <script src="chrome://resources/js/load_time_data.js"></script> 13 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://network/strings.js"></script> 15 <script src="chrome://network/strings.js"></script>
11 <script src="chrome://network/network_ui.js"></script> 16 <script src="chrome://network/network_ui.js"></script>
12 </head> 17 </head>
18
13 <body> 19 <body>
14 <div id="header"> 20 <div id="header">
15 <p i18n-content="autoRefreshText"></p> 21 <p i18n-content="autoRefreshText"></p>
16 <span i18n-values=".innerHTML:deviceLogLinkText"></span> 22 <span i18n-values=".innerHTML:deviceLogLinkText"></span>
17 <div id="advanced-options"> 23 <div id="advanced-options">
18 <span i18n-content="clickToExpandText"></span> 24 <span i18n-content="clickToExpandText"></span>
19 <span i18n-content="propertyFormatText"></span> 25 <span i18n-content="propertyFormatText"></span>
20 <select id="get-property-format"> 26 <select id="get-property-format">
21 <option value="normal" i18n-content="normalFormatOption"></option> 27 <option value="normal" i18n-content="normalFormatOption"></option>
22 <option value="managed" i18n-content="managedFormatOption"></option> 28 <option value="managed" i18n-content="managedFormatOption"></option>
23 <option value="shill" i18n-content="shillFormatOption"></option> 29 <option value="shill" i18n-content="shillFormatOption"></option>
24 </select> 30 </select>
25 </div> 31 </div>
26 <p><button id="refresh" i18n-content="networkRefreshText"></button></p> 32
33 <div id="default-network">
34 <cr-network-icon id="default-network-icon"></cr-network-icon>
35 <span id="default-network-text"></span>
36 </div>
37
38 <div>
39 <paper-button raised class="colored" id="refresh"
40 i18n-content="networkRefreshText">
41 </paper-button>
42 </div>
27 </div> 43 </div>
28 44
29 <h3 i18n-content="visibleNetworksLabel"></h3> 45 <h3 i18n-content="visibleNetworksLabel"></h3>
30 <table id="network-state-table" class="state-table"> 46 <table id="network-state-table" class="state-table">
31 <tr class="state-table-header"> 47 <tr class="state-table-header">
32 <td></td> 48 <td></td>
49 <td></td>
33 <td>GUID</td> 50 <td>GUID</td>
34 <td>Path</td> 51 <td>Path</td>
35 <td>Name</td> 52 <td>Name</td>
36 <td>Type</td> 53 <td>Type</td>
37 <td>State</td> 54 <td>State</td>
38 <td>Connect?</td> 55 <td>Connect?</td>
39 <td>Error</td> 56 <td>Error</td>
40 <td>Security</td> 57 <td>Security</td>
41 <td>Tech</td> 58 <td>Tech</td>
42 <td>Activation</td> 59 <td>Activation</td>
43 <td>Roam</td> 60 <td>Roam</td>
44 <td>OOC</td> 61 <td>OOC</td>
45 <td>Strength</td> 62 <td>Strength</td>
46 </tr> 63 </tr>
47 </table> 64 </table>
48 65
49 <h3 i18n-content="favoriteNetworksLabel"></h3> 66 <h3 i18n-content="favoriteNetworksLabel"></h3>
50 <table id="favorite-state-table" class="state-table"> 67 <table id="favorite-state-table" class="state-table">
51 <tr class="state-table-header"> 68 <tr class="state-table-header">
52 <td></td> 69 <td></td>
70 <td></td>
53 <td>GUID</td> 71 <td>GUID</td>
54 <td>Path</td> 72 <td>Path</td>
55 <td>Name</td> 73 <td>Name</td>
56 <td>Type</td> 74 <td>Type</td>
57 <td>Profile</td> 75 <td>Profile</td>
58 <td>Visible</td> 76 <td>Visible</td>
59 <td>ONC Source</td> 77 <td>ONC Source</td>
60 </tr> 78 </tr>
61 </table> 79 </table>
62 80
63 <script src="chrome://resources/js/i18n_template2.js"></script> 81 <script src="chrome://resources/js/i18n_template2.js"></script>
64 </body> 82 </body>
65 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698