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

Side by Side Diff: chrome/browser/resources/chromeos/login/login_shared.html

Issue 2067153002: ChromeOS: Implement Network Selection screen of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. 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
OLDNEW
1 <!-- 1 <!--
2 This file is included for OOBE, login, and the lock screen. Only files which are 2 This file is included for OOBE, login, and the lock screen. Only files which are
3 needed by all three scenarios should be included here. If a file should only be 3 needed by all three scenarios should be included here. If a file should only be
4 shared between OOBE and login, add it to login_non_lock_shared.html. 4 shared between OOBE and login, add it to login_non_lock_shared.html.
5 5
6 Any additional include increases the lock screen initialization time. 6 Any additional include increases the lock screen initialization time.
7 --> 7 -->
8 8
9 <!-- This must be first import in all login pages. -->
stevenjb 2016/07/08 17:43:35 nit: 'the first import'
Alexander Alekseev 2016/07/09 04:31:30 Done.
10 <link rel="import" href="chrome://resources/html/polymer.html">
9 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 11 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
10 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"> 12 <link rel="stylesheet" href="chrome://resources/css/dialogs.css">
11 <link rel="stylesheet" href="chrome://resources/css/list.css"> 13 <link rel="stylesheet" href="chrome://resources/css/list.css">
12 <link rel="stylesheet" href="chrome://resources/css/menu_button.css"> 14 <link rel="stylesheet" href="chrome://resources/css/menu_button.css">
13 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 15 <link rel="stylesheet" href="chrome://resources/css/menu.css">
14 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 16 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
15 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 17 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
16 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 18 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
17 19
18 <link rel="stylesheet" href="apps_menu.css"> 20 <link rel="stylesheet" href="apps_menu.css">
(...skipping 20 matching lines...) Expand all
39 <script src="chrome://resources/js/cr/ui/list_item.js"></script> 41 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
40 <script src="chrome://resources/js/cr/ui/list.js"></script> 42 <script src="chrome://resources/js/cr/ui/list.js"></script>
41 <script src="chrome://resources/js/cr/ui/grid.js"></script> 43 <script src="chrome://resources/js/cr/ui/grid.js"></script>
42 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 44 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
43 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 45 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
44 <script src="chrome://resources/js/cr/ui/menu.js"></script> 46 <script src="chrome://resources/js/cr/ui/menu.js"></script>
45 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 47 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
46 <script src="chrome://resources/js/load_time_data.js"></script> 48 <script src="chrome://resources/js/load_time_data.js"></script>
47 <script src="chrome://resources/js/util.js"></script> 49 <script src="chrome://resources/js/util.js"></script>
48 <script src="chrome://oobe/strings.js"></script> 50 <script src="chrome://oobe/strings.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698