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

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

Issue 12207138: Remove unused ntp_search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="
3 dir:textdirection;
4 hasattribution:hasattribution;
5 themegravity:themegravity;
6 bookmarkbarattached:bookmarkbarattached;"
7 class="starting-up">
8 <head>
9 <meta charset="utf-8">
10 <title i18n-content="title"></title>
11 <!-- Don't scale the viewport in either portrait or landscape mode.
12 Note that this means apps will be reflowed when rotated (like iPad).
13 If we wanted to maintain position we could remove 'maximum-scale' so
14 that we'd zoom out in portrait mode, but then there would be a bunch
15 of unusable space at the bottom.
16 -->
17 <meta name="viewport"
18 content="user-scalable=no, width=device-width, maximum-scale=1.0">
19
20 <!-- It's important that this be the first script loaded. -->
21 <script src="../ntp4/logging.js"></script>
22
23 <!-- TODO(jeremycho): This is only used for notifications. Discuss with UX. -->
24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css">
25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl e.css">
26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css">
27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css" >
28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css">
29
30 <link rel="stylesheet" href="most_visited_page.css">
31 <link rel="stylesheet" href="nav_dot.css">
32 <link rel="stylesheet" href="new_tab.css">
33 <link rel="stylesheet" href="thumbnail_page.css">
34 <link rel="stylesheet" href="tile_page.css">
35 <link rel="stylesheet" href="apps_page.css">
36
37 <link id="themecss" rel="stylesheet">
38
39 <script src="../../../../ui/webui/resources/js/event_tracker.js"></script>
40 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
41 <script src="../../../../ui/webui/resources/js/parse_html_subset.js"></script>
42 <script src="../../../../ui/webui/resources/js/util.js"></script>
43 <script src="../../../../ui/webui/resources/js/cr.js"></script>
44 <script src="../../../../ui/webui/resources/js/cr/ui.js"></script>
45 <script src="../../../../ui/webui/resources/js/cr/ui/bubble.js"></script>
46 <script src="../../../../ui/webui/resources/js/cr/ui/card_slider.js"></script>
47 <script src="../../../../ui/webui/resources/js/cr/ui/context_menu_handler.js"></ script>
48 <script src="../../../../ui/webui/resources/js/cr/ui/drag_wrapper.js"></script>
49 <script src="../../../../ui/webui/resources/js/cr/ui/expandable_bubble.js"></scr ipt>
50 <script src="../../../../ui/webui/resources/js/cr/ui/menu.js"></script>
51 <script src="../../../../ui/webui/resources/js/cr/ui/menu_item.js"></script>
52 <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/context_menu_button.js"></s cript>
55 <script src="../../../../ui/webui/resources/js/cr/ui/touch_handler.js"></script>
56
57 <script src="position_util.js"></script>
58 <script src="new_tab.js"></script>
59 <script src="dot_list.js"></script>
60 <script src="nav_dot.js"></script>
61 <script src="tile_page.js"></script>
62 <script src="thumbnail_page.js"></script>
63 <script src="most_visited_page.js"></script>
64 <script src="apps_page.js"></script>
65 </head>
66
67 <body id="ntp5" i18n-values=".style.fontSize:fontsize">
68 <div id="bottom-panel">
69 <div id="bottom-panel-header">
70 <ul id="dot-list" hidden></ul>
71 </div>
72 <div id="card-slider-frame">
73 <div id="page-list"></div>
74 <div id="attribution">
75 <span i18n-content="attributionintro"></span>
76 <img id="attribution-img">
77 </div>
78 </div>
79 <div id="bottom-panel-footer">
80 <div id="bottom-panel-toolbar">
81 <div id="notification-container" hidden>
82 <div id="notification">
83 <span></span>
84 <div id="notificationLinks"></div>
85 <button class="close-button custom-appearance"></button>
86 </div>
87 </div>
88 </div>
89 <div id="bookmark-bar-spacer"></div>
90 </div>
91 </div>
92 <div id="promo-bubble-anchor"></div>
93 </body>
94
95 <!-- A div to hold all the templates, and in the darkness bind them. -->
96 <div hidden>
97
98 <!-- NTP4 intro bubble -->
99 <div id="ntp4-intro-bubble-contents">
100 <div></div>
101 <a i18n-content="learn_more" target="_blank"></a>
102 </div>
103
104 <!-- App Contents w/ Large Icon -->
105 <div id="app-large-icon-template" class="app-contents">
106 <div class="app-img-container">
107 <img class="invisible">
108 </div>
109 <span class="title"></span>
110 </div>
111
112 <!-- App Contents w/ Small Icon -->
113 <div id="app-small-icon-template" class="app-contents">
114 <div class="app-icon-div" aria-hidden="true">
115 <div class="app-img-container">
116 <img class="invisible" alt="">
117 </div>
118 <div class="color-stripe"></div>
119 </div>
120 <span class="title"></span>
121 </div>
122
123 </div>
124
125 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp_search/new_tab.css ('k') | chrome/browser/resources/ntp_search/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698