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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/about_version.html
diff --git a/chrome/browser/resources/about_version.html b/chrome/browser/resources/about_version.html
index e0176555ca77e2a3a6bdf472b559cdfe682e7368..a584f742eec9201b1226bf365d63c1667a49cc11 100644
--- a/chrome/browser/resources/about_version.html
+++ b/chrome/browser/resources/about_version.html
@@ -21,13 +21,12 @@ about:version template page
<body>
<div id="outer">
<div id="logo">
-<if expr="pp_ifdef('android')">
- <!-- Android does not support themes. -->
- <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo.png">
-</if>
-<if expr="not pp_ifdef('android')">
+<if expr="pp_ifdef('enable_themes')">
<img src="chrome://theme/IDR_PRODUCT_LOGO">
</if>
+<if expr="not pp_ifdef('enable_themes')">
+ <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo.png">
+</if>
<div id="company" i18n-content="company"></div>
<div id="copyright" i18n-content="copyright"></div>
</div>
« 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