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

Side by Side Diff: chrome/browser/resources/new_new_tab.html

Issue 449073: Put "make this my home page" link into the tip section.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/browser/dom_ui/tips_handler.cc ('k') | chrome/browser/resources/new_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 i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 bookmarkbarattached:bookmarkbarattached; 4 bookmarkbarattached:bookmarkbarattached;
5 hasattribution:hasattribution; 5 hasattribution:hasattribution;
6 anim:anim; 6 anim:anim;
7 syncispresent:syncispresent; 7 syncispresent:syncispresent">
8 showsetashomepage:showsetashomepage">
9 8
10 <meta charset="utf-8"> 9 <meta charset="utf-8">
11 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
12 <script> 11 <script>
13 // Logging info for benchmarking purposes. 12 // Logging info for benchmarking purposes.
14 var log = []; 13 var log = [];
15 function logEvent(name, shouldLogTime) { 14 function logEvent(name, shouldLogTime) {
16 if (shouldLogTime) { 15 if (shouldLogTime) {
17 chrome.send('logEventTime', [name]); 16 chrome.send('logEventTime', [name]);
18 } 17 }
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 </span> 247 </span>
249 </div> 248 </div>
250 <script>updateSimpleSection('recently-closed', Section.RECENT);</script> 249 <script>updateSimpleSection('recently-closed', Section.RECENT);</script>
251 250
252 <div id="sync-status"> 251 <div id="sync-status">
253 <h2></h2> 252 <h2></h2>
254 <span></span> 253 <span></span>
255 </div> 254 </div>
256 <script>updateSimpleSection('sync-status', Section.SYNC);</script> 255 <script>updateSimpleSection('sync-status', Section.SYNC);</script>
257 256
258 <div id="set-as-home-page">
259 <button class="link">
260 <span class="link-color" i18n-content="makethishomepage"></span>
261 </button>
262 </div>
263
264 <div id="tip-line"></div> 257 <div id="tip-line"></div>
265 <script>updateSimpleSection('tip-line', Section.TIPS);</script> 258 <script>updateSimpleSection('tip-line', Section.TIPS);</script>
266 259
267 <div id="attribution" class="attribution"> 260 <div id="attribution" class="attribution">
268 <div i18n-content="attributionintro"></div> 261 <div i18n-content="attributionintro"></div>
269 <img id="attribution-img"> 262 <img id="attribution-img">
270 </div> 263 </div>
271 264
272 </div> <!-- main --> 265 </div> <!-- main -->
273 266
(...skipping 12 matching lines...) Expand all
286 279
287 </div> <!-- container --> 280 </div> <!-- container -->
288 281
289 <div class="window-menu" id="window-tooltip"></div> 282 <div class="window-menu" id="window-tooltip"></div>
290 283
291 </body> 284 </body>
292 <script src="i18n_template.js"></script> 285 <script src="i18n_template.js"></script>
293 <script src="local_strings.js"></script> 286 <script src="local_strings.js"></script>
294 <script src="new_new_tab.js"></script> 287 <script src="new_new_tab.js"></script>
295 </html> 288 </html>
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/tips_handler.cc ('k') | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698