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

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

Issue 10839003: Pass enable_themes to grit and use for html conditions regarding themes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « build/common.gypi ('k') | no next file » | 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 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t" i18n-values="dir:textdirection;"> 7 <html id="t" i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <if expr="pp_ifdef('android')"> 10 <if expr="pp_ifdef('android')">
11 <meta name="viewport" content="width=device-width"/> 11 <meta name="viewport" content="width=device-width"/>
12 </if> 12 </if>
13 <link rel="stylesheet" href="shared/css/about_version.css"> 13 <link rel="stylesheet" href="shared/css/about_version.css">
14 <if expr="pp_ifdef('android')"> 14 <if expr="pp_ifdef('android')">
15 <link rel="stylesheet" href="about_version_android.css"> 15 <link rel="stylesheet" href="about_version_android.css">
16 </if> 16 </if>
17 <script src="chrome://version/version.js"></script> 17 <script src="chrome://version/version.js"></script>
18 <script src="chrome://version/strings.js"></script> 18 <script src="chrome://version/strings.js"></script>
19 </head> 19 </head>
20 20
21 <body> 21 <body>
22 <div id="outer"> 22 <div id="outer">
23 <div id="logo"> 23 <div id="logo">
24 <if expr="pp_ifdef('android')"> 24 <if expr="pp_ifdef('enable_themes')">
25 <!-- Android does not support themes. --> 25 <img src="chrome://theme/IDR_PRODUCT_LOGO">
26 </if>
27 <if expr="not pp_ifdef('enable_themes')">
26 <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_log o.png"> 28 <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_log o.png">
27 </if> 29 </if>
28 <if expr="not pp_ifdef('android')">
29 <img src="chrome://theme/IDR_PRODUCT_LOGO">
30 </if>
31 <div id="company" i18n-content="company"></div> 30 <div id="company" i18n-content="company"></div>
32 <div id="copyright" i18n-content="copyright"></div> 31 <div id="copyright" i18n-content="copyright"></div>
33 </div> 32 </div>
34 <table id="inner" cellpadding="0" cellspacing="0" border="0"> 33 <table id="inner" cellpadding="0" cellspacing="0" border="0">
35 <tr><td class="label" valign="top" id="name" i18n-content="name"></td> 34 <tr><td class="label" valign="top" id="name" i18n-content="name"></td>
36 <td class="version" id="version"><span i18n-content="version"></span> (<span i18n-content="official"></span> <span i18n-content="cl"></span>) <span i1 8n-content="version_modifier"></span></td> 35 <td class="version" id="version"><span i18n-content="version"></span> (<span i18n-content="official"></span> <span i18n-content="cl"></span>) <span i1 8n-content="version_modifier"></span></td>
37 </tr> 36 </tr>
38 <if expr="not pp_ifdef('chromeos')"> 37 <if expr="not pp_ifdef('chromeos')">
39 <tr><td class="label" valign="top" i18n-content="os_name"></td> 38 <tr><td class="label" valign="top" i18n-content="os_name"></td>
40 <td class="version" id="os_type"><span i18n-content="os_type"></span> <span i18n-content="os_version"></span></td> 39 <td class="version" id="os_type"><span i18n-content="os_type"></span> <span i18n-content="os_version"></span></td>
(...skipping 27 matching lines...) Expand all
68 <td class="version" id="profile_path" i18n-content="profile_path"></ td> 67 <td class="version" id="profile_path" i18n-content="profile_path"></ td>
69 </tr> 68 </tr>
70 </table> 69 </table>
71 </div> 70 </div>
72 <script src="chrome://resources/js/i18n_template.js"></script> 71 <script src="chrome://resources/js/i18n_template.js"></script>
73 <script src="chrome://resources/js/i18n_process.js"></script> 72 <script src="chrome://resources/js/i18n_process.js"></script>
74 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 73 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
75 </body> 74 </body>
76 75
77 </html> 76 </html>
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698