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

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

Issue 208683007: Update incognito and guest browsing new tab page: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created a shared guest / incognito tab stylesheet, fixes to styles. Created 6 years, 8 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> 2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="guest_tab.css"> 6 <link rel="stylesheet" href="incognito_guest_tab.css">
7 <script> 7 <script>
8 // Until themes can clear the cache, force-reload the theme stylesheet. 8 // Until themes can clear the cache, force-reload the theme stylesheet.
9 document.write('<link id="guestthemecss" rel="stylesheet" ' + 9 document.write('<link id="guestthemecss" rel="stylesheet" ' +
10 'href="chrome://theme/css/guest_new_tab_theme.css?' + 10 'href="chrome://theme/css/guest_new_tab_theme.css?' +
11 Date.now() + '">'); 11 Date.now() + '">');
12 </script> 12 </script>
13 </head> 13 </head>
14 <body> 14 <body>
15 <div class="content" 15 <div class="content"
16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <span i18n-values=".innerHTML:content"></span> 17 <span i18n-values=".innerHTML:content"></span>
18 </div> 18 </div>
19 </body> 19 </body>
20 <script src="chrome://resources/js/cr.js"></script> 20 <script src="chrome://resources/js/cr.js"></script>
21 <script> 21 <script>
22 cr.define('ntp', function() { 22 cr.define('ntp', function() {
23 'use strict'; 23 'use strict';
24 24
25 function themeChanged() { 25 function themeChanged() {
26 document.getElementById('guestthemecss').href = 26 document.getElementById('guestthemecss').href =
27 'chrome://theme/css/guest_new_tab_theme.css?' + Date.now(); 27 'chrome://theme/css/guest_new_tab_theme.css?' + Date.now();
28 } 28 }
29 29
30 return { 30 return {
31 themeChanged: themeChanged, 31 themeChanged: themeChanged,
32 }; 32 };
33 }); 33 });
34 </script> 34 </script>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698