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

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

Issue 2069323002: Add support for custom entries in <cr_network_select/>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@604119--Implement-Chrome-OS-out-of-box-flow-in-Material-Design--ImplementNetworkSelectionScreen
Patch Set: Fix compile. Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/internet_page/internet_known_networks_page.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title id="network" i18n-content="titleText"></title> 6 <title id="network" i18n-content="titleText"></title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <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/network/cr_network_ico n.html"> 9 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico n.html">
10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_sel ect.html"> 10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_sel ect.html">
(...skipping 14 matching lines...) Expand all
25 <span i18n-content="clickToExpandText"></span> 25 <span i18n-content="clickToExpandText"></span>
26 <span i18n-content="propertyFormatText"></span> 26 <span i18n-content="propertyFormatText"></span>
27 <select id="get-property-format"> 27 <select id="get-property-format">
28 <option value="normal" i18n-content="normalFormatOption"></option> 28 <option value="normal" i18n-content="normalFormatOption"></option>
29 <option value="managed" i18n-content="managedFormatOption"></option> 29 <option value="managed" i18n-content="managedFormatOption"></option>
30 <option value="state" i18n-content="stateFormatOption"></option> 30 <option value="state" i18n-content="stateFormatOption"></option>
31 <option value="shill" i18n-content="shillFormatOption"></option> 31 <option value="shill" i18n-content="shillFormatOption"></option>
32 </select> 32 </select>
33 </div> 33 </div>
34 34
35 <cr-network-select expandable show-active max-height="100"> 35 <cr-network-select expandable show-active show-buttons max-height="100"
36 handle-network-item-selected>
36 </cr-network-select> 37 </cr-network-select>
37 38
38 <div> 39 <div>
39 <paper-button raised class="colored" id="refresh" 40 <paper-button raised class="colored" id="refresh"
40 i18n-content="networkRefreshText"> 41 i18n-content="networkRefreshText">
41 </paper-button> 42 </paper-button>
42 </div> 43 </div>
43 </div> 44 </div>
44 45
45 <h3 i18n-content="visibleNetworksLabel"></h3> 46 <h3 i18n-content="visibleNetworksLabel"></h3>
(...skipping 28 matching lines...) Expand all
74 <td>Type</td> 75 <td>Type</td>
75 <td>Profile</td> 76 <td>Profile</td>
76 <td>Visible</td> 77 <td>Visible</td>
77 <td>ONC Source</td> 78 <td>ONC Source</td>
78 </tr> 79 </tr>
79 </table> 80 </table>
80 81
81 <script src="chrome://resources/js/i18n_template.js"></script> 82 <script src="chrome://resources/js/i18n_template.js"></script>
82 </body> 83 </body>
83 </html> 84 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/internet_page/internet_known_networks_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698