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

Side by Side Diff: chrome/browser/resources/chromeos/network_configuration/config.html

Issue 12676017: Adding policy support to the new network configuration stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang errors. Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Network Configuration</title> 4 <title>Network Configuration</title>
5 <script src="chrome://resources/js/util.js"></script> 5 <script src="chrome://resources/js/util.js"></script>
6 <script src="chrome://resources/js/cr.js"></script> 6 <script src="chrome://resources/js/cr.js"></script>
7 <script src="chrome://resources/js/cr/event_target.js"></script> 7 <script src="chrome://resources/js/cr/event_target.js"></script>
8 <script src="chrome://resources/js/cr/ui.js"></script> 8 <script src="chrome://resources/js/cr/ui.js"></script>
9 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> 9 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
10 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> 10 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
11 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> 11 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
12 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"> 12 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js">
13 </script> 13 </script>
14 <script src="chrome://resources/js/cr/ui/list_item.js"></script> 14 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
15 <script src="chrome://resources/js/cr/ui/list.js"></script> 15 <script src="chrome://resources/js/cr/ui/list.js"></script>
16 <script src="js/network_config.js"></script> 16 <script src="js/network_config.js"></script>
17 <script src="js/main_config.js"></script> 17 <script src="js/main_config.js"></script>
18 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 18 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
19 <link rel="stylesheet" href="css/config.css"></link> 19 <link rel="stylesheet" href="css/config.css"></link>
20 </head> 20 </head>
21 <body> 21 <body>
22 <div id="network-config"> 22 <div id="network-config">
23 <h3>Configuration</h3> 23 <h3>Configuration</h3>
24 <div id="network-properties"> 24 <div id="network-properties">
25 </div> 25 </div>
26 </div> 26 </div>
27 <div class="button-strip"> 27 <div class="button-strip">
28 <button id="close"> 28 <button id="save">
29 Close 29 Save
30 </button> 30 </button>
31 <button id="connect"> 31 <button id="connect">
32 Connect 32 Connect
33 </button> 33 </button>
34 <button id="disconnect"> 34 <button id="disconnect">
35 Disconnect 35 Disconnect
36 </button> 36 </button>
37 </div> 37 </div>
38 <div id="message-area"> 38 <div id="message-area">
39 </div> 39 </div>
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698