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

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

Issue 2897015: Clean up browser_resources.grd:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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
« no previous file with comments | « chrome/browser/resources/history2.html ('k') | chrome/browser/resources/media_common.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="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> 2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached">
3 <head> 3 <head>
4 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <style> 5 <style>
6 body { 6 body {
7 margin:10px 8px 10px 8px; 7 margin:10px 8px 10px 8px;
8 } 8 }
9 html[dir="ltr"] .icon { 9 html[dir="ltr"] .icon {
10 float:right; 10 float:right;
(...skipping 30 matching lines...) Expand all
41 </style> 41 </style>
42 <script> 42 <script>
43 // Until themes can clear the cache, force-reload the theme stylesheet. 43 // Until themes can clear the cache, force-reload the theme stylesheet.
44 document.write('<link id="incognitothemecss" rel="stylesheet" ' + 44 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
45 'href="chrome://theme/css/newincognitotab.css?' + 45 'href="chrome://theme/css/newincognitotab.css?' +
46 Date.now() + '">'); 46 Date.now() + '">');
47 </script> 47 </script>
48 </head> 48 </head>
49 <body> 49 <body>
50 <div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:f ontsize"> 50 <div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:f ontsize">
51 <img src="../../app/theme/otr_icon_standalone.png" class="icon" /> 51 <img src="shared/images/otr_icon_standalone.png" class="icon" />
52 <span i18n-values=".innerHTML:content"></span> 52 <span i18n-values=".innerHTML:content"></span>
53 </div> 53 </div>
54 <div class="extensionsmessage" i18n-values=".style.fontFamily:fontfamily;.style. fontSize:fontsize"> 54 <div class="extensionsmessage" i18n-values=".style.fontFamily:fontfamily;.style. fontSize:fontsize">
55 <img src="../../app/theme/extensions_section.png" class="extensionicon" /> 55 <img src="../../app/theme/extensions_section.png" class="extensionicon" />
56 <span i18n-values=".innerHTML:extensionsmessage"></span> 56 <span i18n-values=".innerHTML:extensionsmessage"></span>
57 </div> 57 </div>
58 </body> 58 </body>
59 <script> 59 <script>
60 function themeChanged() { 60 function themeChanged() {
61 document.getElementById('incognitothemecss').href = 61 document.getElementById('incognitothemecss').href =
62 'chrome://theme/css/newincognitotab.css?' + Date.now(); 62 'chrome://theme/css/newincognitotab.css?' + Date.now();
63 } 63 }
64 64
65 function bookmarkBarAttached() { 65 function bookmarkBarAttached() {
66 document.documentElement.setAttribute("bookmarkbarattached", "true"); 66 document.documentElement.setAttribute("bookmarkbarattached", "true");
67 } 67 }
68 68
69 function bookmarkBarDetached() { 69 function bookmarkBarDetached() {
70 document.documentElement.setAttribute("bookmarkbarattached", "false"); 70 document.documentElement.setAttribute("bookmarkbarattached", "false");
71 } 71 }
72 </script> 72 </script>
73 </html> 73 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/history2.html ('k') | chrome/browser/resources/media_common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698