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

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.html

Issue 1151563005: Revert of NTP Zombie Code Slayer Part IV: Most Visited (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 class="starting-up" i18n-values="dir:textdirection; 2 <html class="starting-up" i18n-values="dir:textdirection;
3 hasattribution:hasattribution; 3 hasattribution:hasattribution;
4 themegravity:themegravity; 4 themegravity:themegravity;
5 bookmarkbarattached:bookmarkbarattached; 5 bookmarkbarattached:bookmarkbarattached;
6 lang:language"> 6 lang:language">
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <!-- Don't scale the viewport in either portrait or landscape mode. 10 <!-- Don't scale the viewport in either portrait or landscape mode.
11 Note that this means apps will be reflowed when rotated (like iPad). 11 Note that this means apps will be reflowed when rotated (like iPad).
12 If we wanted to maintain position we could remove 'maximum-scale' so 12 If we wanted to maintain position we could remove 'maximum-scale' so
13 that we'd zoom out in portrait mode, but then there would be a bunch 13 that we'd zoom out in portrait mode, but then there would be a bunch
14 of unusable space at the bottom. 14 of unusable space at the bottom.
15 --> 15 -->
16 <meta name="viewport" 16 <meta name="viewport"
17 content="user-scalable=no, width=device-width, maximum-scale=1.0"> 17 content="user-scalable=no, width=device-width, maximum-scale=1.0">
18 18
19 <!-- It's important that this be the first script loaded. --> 19 <!-- It's important that this be the first script loaded. -->
20 <script src="logging.js"></script> 20 <script src="logging.js"></script>
21 21
22 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 22 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
23 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css"> 23 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css">
24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl e.css"> 24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl e.css">
25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css"> 25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css">
26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css" > 26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css" >
27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> 27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css">
28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css"> 28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css">
29 <link rel="stylesheet" href="apps_page.css"> 29 <link rel="stylesheet" href="apps_page.css">
30 <link rel="stylesheet" href="most_visited_page.css">
30 <link rel="stylesheet" href="nav_dot.css"> 31 <link rel="stylesheet" href="nav_dot.css">
31 <link rel="stylesheet" href="new_tab.css"> 32 <link rel="stylesheet" href="new_tab.css">
32 <link rel="stylesheet" href="footer_menu.css"> 33 <link rel="stylesheet" href="footer_menu.css">
33 <link rel="stylesheet" href="tile_page.css"> 34 <link rel="stylesheet" href="tile_page.css">
34 <link id="themecss" rel="stylesheet"> 35 <link id="themecss" rel="stylesheet">
35 36
36 <script src="../../../../ui/webui/resources/js/action_link.js"></script> 37 <script src="../../../../ui/webui/resources/js/action_link.js"></script>
37 <script src="../../../../ui/webui/resources/js/event_tracker.js"></script> 38 <script src="../../../../ui/webui/resources/js/event_tracker.js"></script>
38 <script src="../../../../ui/webui/resources/js/parse_html_subset.js"></script> 39 <script src="../../../../ui/webui/resources/js/parse_html_subset.js"></script>
39 <script src="../../../../ui/webui/resources/js/util.js"></script> 40 <script src="../../../../ui/webui/resources/js/util.js"></script>
(...skipping 10 matching lines...) Expand all
50 <script src="../../../../ui/webui/resources/js/cr/ui/menu_item.js"></script> 51 <script src="../../../../ui/webui/resources/js/cr/ui/menu_item.js"></script>
51 <script src="../../../../ui/webui/resources/js/cr/ui/menu.js"></script> 52 <script src="../../../../ui/webui/resources/js/cr/ui/menu.js"></script>
52 <script src="../../../../ui/webui/resources/js/cr/ui/position_util.js"></script> 53 <script src="../../../../ui/webui/resources/js/cr/ui/position_util.js"></script>
53 <script src="../../../../ui/webui/resources/js/cr/ui/menu_button.js"></script> 54 <script src="../../../../ui/webui/resources/js/cr/ui/menu_button.js"></script>
54 <script src="../../../../ui/webui/resources/js/cr/ui/context_menu_button.js"></s cript> 55 <script src="../../../../ui/webui/resources/js/cr/ui/context_menu_button.js"></s cript>
55 <script src="../../../../ui/webui/resources/js/cr/ui/touch_handler.js"></script> 56 <script src="../../../../ui/webui/resources/js/cr/ui/touch_handler.js"></script>
56 57
57 <script src="tile_page.js"></script> 58 <script src="tile_page.js"></script>
58 <script src="apps_page.js"></script> 59 <script src="apps_page.js"></script>
59 <script src="dot_list.js"></script> 60 <script src="dot_list.js"></script>
61 <script src="most_visited_page.js"></script>
60 <script src="trash.js"></script> 62 <script src="trash.js"></script>
61 <script src="page_list_view.js"></script> 63 <script src="page_list_view.js"></script>
62 <script src="page_switcher.js"></script> 64 <script src="page_switcher.js"></script>
63 65
64 <script src="nav_dot.js"></script> 66 <script src="nav_dot.js"></script>
65 <script src="new_tab.js"></script> 67 <script src="new_tab.js"></script>
66 </head> 68 </head>
67 69
68 <body> 70 <body>
69 <div id="notification-container" class="inactive" hidden> 71 <div id="notification-container" class="inactive" hidden>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 </div> 175 </div>
174 <span class="title"></span> 176 <span class="title"></span>
175 </div> 177 </div>
176 178
177 </div> 179 </div>
178 180
179 <!-- This is used to measure text in the current locale. It is not visible. --> 181 <!-- This is used to measure text in the current locale. It is not visible. -->
180 <div id="fontMeasuringDiv"></div> 182 <div id="fontMeasuringDiv"></div>
181 183
182 </html> 184 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/most_visited_page.js ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698