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

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

Issue 1140813003: NTP Zombie Code Slayer III, The Saga Continues: Foreign Sessions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@suggestions-page
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
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 <script src="tile_page.js"></script> 58 <script src="tile_page.js"></script>
59 <script src="apps_page.js"></script> 59 <script src="apps_page.js"></script>
60 <script src="dot_list.js"></script> 60 <script src="dot_list.js"></script>
61 <script src="most_visited_page.js"></script> 61 <script src="most_visited_page.js"></script>
62 <script src="trash.js"></script> 62 <script src="trash.js"></script>
63 <script src="page_list_view.js"></script> 63 <script src="page_list_view.js"></script>
64 <script src="page_switcher.js"></script> 64 <script src="page_switcher.js"></script>
65 65
66 <script src="nav_dot.js"></script> 66 <script src="nav_dot.js"></script>
67 <script src="new_tab.js"></script> 67 <script src="new_tab.js"></script>
68 <script src="other_sessions.js"></script>
69 </head> 68 </head>
70 69
71 <body> 70 <body>
72 <div id="notification-container" class="inactive" hidden> 71 <div id="notification-container" class="inactive" hidden>
73 <div id="notification"> 72 <div id="notification">
74 <span></span> 73 <span></span>
75 <div id="notificationLinks"></div> 74 <div id="notificationLinks"></div>
76 <button class="close-button custom-appearance" class="custom-appearance"> 75 <button class="close-button custom-appearance" class="custom-appearance">
77 </button> 76 </button>
78 </div> 77 </div>
(...skipping 30 matching lines...) Expand all
109 <div id="footer-content"> 108 <div id="footer-content">
110 <div id="logo-img"> 109 <div id="logo-img">
111 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO"> 110 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO">
112 <div id="promo-bubble-anchor"></div> 111 <div id="promo-bubble-anchor"></div>
113 </div> 112 </div>
114 113
115 <ul id="dot-list"> 114 <ul id="dot-list">
116 </ul> 115 </ul>
117 116
118 <div id="footer-menu-container" class="menu-container"> 117 <div id="footer-menu-container" class="menu-container">
119 <button id="other-sessions-menu-button"
120 class="footer-menu-button custom-appearance" hidden>
121 <span i18n-content="otherSessions"></span>
122 <div class="disclosure-triangle"></div>
123 </button>
124 <a id="chrome-web-store-link"> 118 <a id="chrome-web-store-link">
125 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort"> 119 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort">
126 </span> 120 </span>
127 </a> 121 </a>
128 <div id="vertical-separator"></div>
129 </div> 122 </div>
130 123
131 <div id="trash" class="trash"> 124 <div id="trash" class="trash">
132 <span class="lid"></span> 125 <span class="lid"></span>
133 <span class="can"></span> 126 <span class="can"></span>
134 <span class="trash-text" i18n-content="appuninstall"></span> 127 <span class="trash-text" i18n-content="appuninstall"></span>
135 </div> 128 </div>
136 </div> 129 </div>
137 </div> 130 </div>
138 131
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 <div id="app-small-icon-template" class="app-contents"> 169 <div id="app-small-icon-template" class="app-contents">
177 <div class="app-icon-div" aria-hidden="true"> 170 <div class="app-icon-div" aria-hidden="true">
178 <div class="app-img-container"> 171 <div class="app-img-container">
179 <img class="invisible" alt=""> 172 <img class="invisible" alt="">
180 </div> 173 </div>
181 <div class="color-stripe"></div> 174 <div class="color-stripe"></div>
182 </div> 175 </div>
183 <span class="title"></span> 176 <span class="title"></span>
184 </div> 177 </div>
185 178
186 <!-- Message shown in the other sessions menu when the user is signed in but
187 there is no session data (e.g. they have tab sync turned off). -->
188 <div id="other-sessions-promo-template" class="other-sessions-promo-message">
189 <span i18n-content="otherSessionsEmpty"></span>
190 <p>
191 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore">
192 </a>
193 </p>
194 </div>
195
196 </div> 179 </div>
197 180
198 <!-- 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. -->
199 <div id="fontMeasuringDiv"></div> 182 <div id="fontMeasuringDiv"></div>
200 183
201 </html> 184 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698