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

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

Issue 1036033002: Add types to networkigPrivate IDL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_470262_networking_private_idl_1
Patch Set: Fix apitest, test.js nits Created 5 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
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/cr_network_icon/cr_net work_icon.html"> 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"> 10 <link rel="import" href="chrome://resources/cr_elements/cr_onc/cr_onc_data.htm l">
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 <td>Path</td> 52 <td>Path</td>
53 <td>Name</td> 53 <td>Name</td>
54 <td>Type</td> 54 <td>Type</td>
55 <td>State</td> 55 <td>State</td>
56 <td>Connect?</td> 56 <td>Connect?</td>
57 <td>Error</td> 57 <td>Error</td>
58 <td>Security</td> 58 <td>Security</td>
59 <td>Tech</td> 59 <td>Tech</td>
60 <td>Activation</td> 60 <td>Activation</td>
61 <td>Roam</td> 61 <td>Roam</td>
62 <td>OOC</td>
63 <td>Strength</td> 62 <td>Strength</td>
64 </tr> 63 </tr>
65 </table> 64 </table>
66 65
67 <h3 i18n-content="favoriteNetworksLabel"></h3> 66 <h3 i18n-content="favoriteNetworksLabel"></h3>
68 <table id="favorite-state-table" class="state-table"> 67 <table id="favorite-state-table" class="state-table">
69 <tr class="state-table-header"> 68 <tr class="state-table-header">
70 <td></td> 69 <td></td>
71 <td></td> 70 <td></td>
72 <td>GUID</td> 71 <td>GUID</td>
73 <td>Path</td> 72 <td>Path</td>
74 <td>Name</td> 73 <td>Name</td>
75 <td>Type</td> 74 <td>Type</td>
76 <td>Profile</td> 75 <td>Profile</td>
77 <td>Visible</td> 76 <td>Visible</td>
78 <td>ONC Source</td> 77 <td>ONC Source</td>
79 </tr> 78 </tr>
80 </table> 79 </table>
81 80
82 <script src="chrome://resources/js/i18n_template2.js"></script> 81 <script src="chrome://resources/js/i18n_template2.js"></script>
83 </body> 82 </body>
84 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698