Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html i18n-values="dir:textdirection; | |
| 3 screen:screenType; | |
| 4 build:buildType; | |
| 5 lang:language"> | |
|
Dan Beam
2016/02/12 23:42:24
nit: alphabetize
Moe
2016/02/20 00:20:59
Done.
| |
| 6 <head> | |
| 7 <meta charset="utf-8"> | |
| 8 <meta name="google" value="notranslate"> | |
| 9 <title i18n-content="title"></title> | |
| 10 | |
| 11 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | |
| 12 <link rel="stylesheet" href="../../../../ui/login/account_picker/screen_accoun t_picker.css"> | |
| 13 <link rel="stylesheet" href="../../../../ui/login/account_picker/user_pod_row. css"> | |
| 14 <link rel="stylesheet" href="../../../../ui/login/bubble.css"> | |
| 15 <link rel="stylesheet" href="../../../../ui/login/oobe.css"> | |
| 16 <link rel="stylesheet" href="../../../../ui/login/screen_container.css"> | |
| 17 <link rel="stylesheet" href="user_manager.css"> | |
| 18 | |
| 19 <link rel="import" href="chrome://md-user-manager/control_bar.html"> | |
| 20 <link rel="import" href="chrome://md-user-manager/create_profile.html"> | |
| 21 <link rel="import" href="chrome://md-user-manager/strings.html"> | |
| 22 <link rel="import" href="chrome://md-user-manager/supervised_user_learn_more.h tml"> | |
| 23 <link rel="import" href="chrome://md-user-manager/user_manager_pages.html"> | |
| 24 <link rel="import" href="chrome://md-user-manager/user_manager_tutorial.html"> | |
| 25 <link rel="import" href="chrome://resources/html/action_link.html"> | |
| 26 <link rel="import" href="chrome://resources/html/cr.html"> | |
| 27 <link rel="import" href="chrome://resources/html/cr/event_target.html"> | |
| 28 <link rel="import" href="chrome://resources/html/cr/ui.html"> | |
| 29 <link rel="import" href="chrome://resources/html/cr/ui/menu.html"> | |
| 30 <link rel="import" href="chrome://resources/html/cr/ui/menu_button.html"> | |
| 31 <link rel="import" href="chrome://resources/html/cr/ui/menu_item.html"> | |
| 32 <link rel="import" href="chrome://resources/html/i18n_template.html"> | |
| 33 <link rel="import" href="chrome://resources/html/load_time_data.html"> | |
| 34 <link rel="import" href="chrome://resources/html/util.html"> | |
| 35 </head> | |
| 36 <body class="oobe-display" unresolved> | |
| 37 <user-manager-pages selected-page="user-pods-page"> | |
| 38 <div id="user-pods-page"> | |
| 39 <div id="outer-container"> | |
| 40 <user-manager-tutorial></user-manager-tutorial> | |
| 41 <div id="oobe" class="faded"> | |
| 42 <div id="inner-container"> | |
| 43 <div id="step-logo" hidden> | |
| 44 <div id="header-sections"></div> | |
| 45 </div> | |
| 46 <include src="../../../../ui/login/account_picker/screen_account_pic ker.html"> | |
| 47 </div> | |
| 48 </div> | |
| 49 </div> | |
| 50 <div id="bubble" class="bubble faded" hidden></div> | |
| 51 <control-bar></control-bar> | |
| 52 <include src="../../../../ui/login/account_picker/user_pod_template.html"> | |
| 53 </div> | |
| 54 <create-profile id="create-user-page"></create-profile> | |
| 55 <supervised-user-learn-more id="supervised-learn-more-page"> | |
| 56 </supervised-user-learn-more> | |
| 57 </user-manager-pages> | |
| 58 <!-- framework imports --> | |
| 59 <!-- as per chrome/browser/resources/chromeos/login/login_resources.html --> | |
| 60 <script src="chrome://resources/js/event_tracker.js"></script> | |
| 61 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> | |
| 62 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></scrip t> | |
| 63 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> | |
| 64 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></scr ipt> | |
| 65 <script src="chrome://resources/js/cr/ui/list.js"></script> | |
| 66 <script src="chrome://resources/js/cr/ui/list_item.js"></script> | |
| 67 <script src="chrome://resources/js/cr/ui/grid.js"></script> | |
|
Dan Beam
2016/02/12 23:42:24
you should be making .html files so these can be i
Moe
2016/02/20 00:21:00
I haven't created this file (i modified it heavily
| |
| 68 <script src="user_manager.js"></script> | |
| 69 </body> | |
| 70 </html> | |
| OLD | NEW |