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

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

Issue 11412214: NTP5: Fine tuning of Apps implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 hasattribution:hasattribution; 4 hasattribution:hasattribution;
5 themegravity:themegravity; 5 themegravity:themegravity;
6 bookmarkbarattached:bookmarkbarattached;" 6 bookmarkbarattached:bookmarkbarattached;"
7 class="starting-up"> 7 class="starting-up">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
(...skipping 10 matching lines...) Expand all
21 <script src="../shared/js/load_time_data.js"></script> 21 <script src="../shared/js/load_time_data.js"></script>
22 <script src="mock/mock.js"></script> 22 <script src="mock/mock.js"></script>
23 <script src="mock/mock_data_autogen.js"></script> 23 <script src="mock/mock_data_autogen.js"></script>
24 <link rel="stylesheet" href="mock/debug.css"> 24 <link rel="stylesheet" href="mock/debug.css">
25 <!-- Mock setup end --> 25 <!-- Mock setup end -->
26 26
27 <!-- It's important that this be the first script loaded. --> 27 <!-- It's important that this be the first script loaded. -->
28 <script src="../ntp4/logging.js"></script> 28 <script src="../ntp4/logging.js"></script>
29 29
30 <!-- TODO(jeremycho): This is only used for notifications. Discuss with UX. --> 30 <!-- TODO(jeremycho): This is only used for notifications. Discuss with UX. -->
31 <link rel="stylesheet" href="../shared/css/bubble.css">
Dan Beam 2012/11/29 04:59:55 rebase issues?
pedro (no code reviews) 2012/11/29 08:02:37 No. I noticed that there's yet another type of not
Dan Beam 2012/11/30 23:41:45 estade@: ^ (I think there's a way of triggering no
31 <link rel="stylesheet" href="../shared/css/expandable_bubble.css"> 32 <link rel="stylesheet" href="../shared/css/expandable_bubble.css">
32 <link rel="stylesheet" href="../shared/css/menu.css"> 33 <link rel="stylesheet" href="../shared/css/menu.css">
33 <link rel="stylesheet" href="../shared/css/menu_button.css"> 34 <link rel="stylesheet" href="../shared/css/menu_button.css">
34 <link rel="stylesheet" href="../shared/css/widgets.css"> 35 <link rel="stylesheet" href="../shared/css/widgets.css">
35 36
36 <link rel="stylesheet" href="most_visited_page.css"> 37 <link rel="stylesheet" href="most_visited_page.css">
37 <link rel="stylesheet" href="nav_dot.css"> 38 <link rel="stylesheet" href="nav_dot.css">
38 <link rel="stylesheet" href="new_tab.css"> 39 <link rel="stylesheet" href="new_tab.css">
39 <link rel="stylesheet" href="other_devices_page.css"> 40 <link rel="stylesheet" href="other_devices_page.css">
40 <link rel="stylesheet" href="thumbnail_page.css"> 41 <link rel="stylesheet" href="thumbnail_page.css">
41 <link rel="stylesheet" href="tile_page.css"> 42 <link rel="stylesheet" href="tile_page.css">
42 <link rel="stylesheet" href="apps_page.css"> 43 <link rel="stylesheet" href="apps_page.css">
43 44
44 <link id="themecss" rel="stylesheet"> 45 <link id="themecss" rel="stylesheet">
45 46
46 <script src="../shared/js/event_tracker.js"></script> 47 <script src="../shared/js/event_tracker.js"></script>
47 <!-- TODO(pedrosimonetti): we need to load this file before the mock script, 48 <!-- TODO(pedrosimonetti): we need to load this file before the mock script,
48 so we are temporarily commenting this out. We should remove once the NTP5 49 so we are temporarily commenting this out. We should remove once the NTP5
49 work is done. 50 work is done.
50 <script src="../shared/js/load_time_data.js"></script> 51 <script src="../shared/js/load_time_data.js"></script>
51 --> 52 -->
52 <script src="../shared/js/parse_html_subset.js"></script> 53 <script src="../shared/js/parse_html_subset.js"></script>
53 <script src="../shared/js/util.js"></script> 54 <script src="../shared/js/util.js"></script>
54 <script src="../shared/js/cr.js"></script> 55 <script src="../shared/js/cr.js"></script>
55 <script src="../shared/js/cr/ui.js"></script> 56 <script src="../shared/js/cr/ui.js"></script>
57 <script src="../shared/js/cr/ui/bubble.js"></script>
56 <script src="../shared/js/cr/ui/card_slider.js"></script> 58 <script src="../shared/js/cr/ui/card_slider.js"></script>
57 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> 59 <script src="../shared/js/cr/ui/context_menu_handler.js"></script>
58 <script src="../shared/js/cr/ui/drag_wrapper.js"></script> 60 <script src="../shared/js/cr/ui/drag_wrapper.js"></script>
59 <script src="../shared/js/cr/ui/expandable_bubble.js"></script> 61 <script src="../shared/js/cr/ui/expandable_bubble.js"></script>
60 <script src="../shared/js/cr/ui/menu.js"></script> 62 <script src="../shared/js/cr/ui/menu.js"></script>
61 <script src="../shared/js/cr/ui/menu_item.js"></script> 63 <script src="../shared/js/cr/ui/menu_item.js"></script>
62 <script src="../shared/js/cr/ui/position_util.js"></script> 64 <script src="../shared/js/cr/ui/position_util.js"></script>
63 <script src="../shared/js/cr/ui/menu_button.js"></script> 65 <script src="../shared/js/cr/ui/menu_button.js"></script>
64 <script src="../shared/js/cr/ui/context_menu_button.js"></script> 66 <script src="../shared/js/cr/ui/context_menu_button.js"></script>
65 <script src="../shared/js/cr/ui/touch_handler.js"></script> 67 <script src="../shared/js/cr/ui/touch_handler.js"></script>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 <div class="app-img-container"> 126 <div class="app-img-container">
125 <img class="invisible"> 127 <img class="invisible">
126 </div> 128 </div>
127 </div> 129 </div>
128 <span class="title"></span> 130 <span class="title"></span>
129 </div> 131 </div>
130 132
131 </div> 133 </div>
132 134
133 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698