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

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

Issue 10332049: remove ntp app install hint (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 <div id="app-small-icon-template" class="app-contents"> 188 <div id="app-small-icon-template" class="app-contents">
189 <div class="app-icon-div"> 189 <div class="app-icon-div">
190 <div class="app-img-container"> 190 <div class="app-img-container">
191 <img class="invisible"> 191 <img class="invisible">
192 </div> 192 </div>
193 <div class="color-stripe"></div> 193 <div class="color-stripe"></div>
194 </div> 194 </div>
195 <span class="title"></span> 195 <span class="title"></span>
196 </div> 196 </div>
197 197
198 <!-- App install hint -->
199 <a id="app-install-hint-template" class="app-install-hint">
200 <div class="app-install-hint-interior">
201 <div class="interior-background"></div>
202 <div class="vertical-bar"></div>
203 <div class="horizontal-bar"></div>
204 </div>
205 <span i18n-content="appInstallHintText"></span>
206 </a>
207
208 <!-- Message shown in the other sessions menu when the user is signed in but 198 <!-- Message shown in the other sessions menu when the user is signed in but
209 there is no session data (e.g. they have tab sync turned off). --> 199 there is no session data (e.g. they have tab sync turned off). -->
210 <div id="other-sessions-promo-template" class="other-sessions-promo-message"> 200 <div id="other-sessions-promo-template" class="other-sessions-promo-message">
211 <span i18n-content="otherSessionsEmpty"></span> 201 <span i18n-content="otherSessionsEmpty"></span>
212 <p> 202 <p>
213 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore"> 203 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore">
214 </a> 204 </a>
215 </p> 205 </p>
216 </div> 206 </div>
217 207
218 </div> 208 </div>
219 209
220 <!-- This is used to measure text in the current locale. It is not visible. --> 210 <!-- This is used to measure text in the current locale. It is not visible. -->
221 <div id="fontMeasuringDiv"></div> 211 <div id="fontMeasuringDiv"></div>
222 212
223 </html> 213 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698