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

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

Issue 4186009: Changed new tab content for Guest Session. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser
Patch Set: fix the link Created 10 years, 1 month 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/ntp_resource_cache.cc ('k') | chrome/browser/resources/incognito_tab.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <title i18n-content="title"></title>
5 <link rel="stylesheet" href="incognito_tab.css">
6 <script>
7 // Until themes can clear the cache, force-reload the theme stylesheet.
8 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
9 'href="chrome://theme/css/newincognitotab.css?' +
10 Date.now() + '">');
11 </script>
12 </head>
13 <body>
14 <div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:f ontsize">
15 <img src="shared/images/guest_icon_standalone.png" class="icon" />
16 <span i18n-values=".innerHTML:content"></span>
17 </div>
18 </body>
19 <script>
20 function themeChanged() {
21 document.getElementById('incognitothemecss').href =
22 'chrome://theme/css/newincognitotab.css?' + Date.now();
23 }
24 </script>
25 </html>
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/ntp_resource_cache.cc ('k') | chrome/browser/resources/incognito_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698