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

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

Issue 10831317: Upstream Android NTP resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved .png files to separate CL Created 8 years, 4 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="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximu m-scale=1.0, user-scalable=0">
6 <title i18n-content="title"></title>
7 <link rel="stylesheet" href="ntp_android.css">
8 <link rel="stylesheet" href="bookmarks.css">
9 <link rel="stylesheet" href="bookmarks_tablet.css">
10 <link rel="stylesheet" href="mostvisited.css">
11 <link rel="stylesheet" href="mostvisited_tablet.css">
12 <link rel="stylesheet" href="opentabs.css">
13 <link rel="stylesheet" href="opentabs_tablet.css">
14 <link rel="stylesheet" href="incognito_tab.css">
15 <!-- template data placeholder -->
16 <script src="../shared/js/cr.js"></script>
17 <script src="ntp_android.js"></script>
18 <script>
19 var MOCK = document.location.host != "newtab";
20 if (MOCK) {
21 document.write('<script src="mockdata.js"><\/script>');
22 var templateData = {
23 "title":"New Tab",
24 "mostvisited":"Most Visited",
25 "remotetabs":"Open Tabs"
26 };
27 }
28 </script>
29 </head>
30 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize;devic e:device">
31 <div id="content-area" style="display:none">
32 <div class="main-section" id="open_tabs_container">
33 <div class="center-empty-container" id="sync_enable_sync" style="display : none;">
34 <div class="center-empty-content" i18n-values=".innerHTML:syncEnableSy nc"></div>
35 </div>
36 <div class="center-empty-container" id="sync_promo" style="display: none ;">
37 <div id="promo_message_on_sync_promo_legacy" class="center-empty-conte nt" i18n-values=".innerHTML:syncPromo"></div>
38 </div>
39 <div class="center-empty-container" id="sync_loading" style="display: no ne;">
40 <div class="center-empty-content" i18n-values=".innerHTML:syncLoading" ></div>
41 </div>
42 <div class="page-list" id="open_tabs_list" style="display: none;"></div>
43 <div class="page-list" id="snapshots_list" style="display: none;"></div>
44 <div id="promo_message_on_open_tabs" class="promo-message" style="displa y: none;"></div>
45 </div>
46 <div class="main-section" id="bookmarks_container">
47 <div id="bookmarks_contents">
48 <div class="section-title-wrapper" id="bookmarks_title_wrapper">
49 <div class="section-title-mask">
50 <div class="section-title"></div>
51 <div class="overflow-left-mask"></div>
52 <div class="overflow-right-mask"></div>
53 </div>
54 </div>
55 <div class="icon-grid grid-set-top-margin grid-set-item-margins" id="b ookmarks_list"></div>
56 </div>
57 </div>
58 <div class="main-section" id="most_visited_container">
59 <div class="icon-grid" id="most_visited_list"></div>
60 <div class="box-spacer"></div>
61 <div id="recently_closed_container" style="display:none;">
62 <div class="recently-closed-title-container">
63 <span class="title" i18n-content="recentlyclosed"></span>
64 </div>
65 <div class="page-list" id="recently_closed_list"></div>
66 </div>
67 <div id="promo_message_on_most_visited" class="promo-message" style="dis play: none;"></div>
68 </div>
69 <div class="main-section" id="incognito_container">
70 <div class="content">
71 <img src="../shared/images/otr_icon_standalone.png" class="icon"/>
72 <span i18n-values=".innerHTML:content"></span>
73 </div>
74 </div>
75 </div>
76 </body>
77 <script src="../shared/js/i18n_template.js"></script>
78 <script>
79 i18nTemplate.process(document, templateData);
80 </script>
81 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp_android/mostvisited_tablet.css ('k') | chrome/browser/resources/ntp_android/ntp_android.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698