Index: chrome/browser/resources/about_version.html |
diff --git a/chrome/browser/resources/about_version.html b/chrome/browser/resources/about_version.html |
index 6f36f14e26c9d398fb66c4597175a9b3740e01f5..e0176555ca77e2a3a6bdf472b559cdfe682e7368 100644 |
--- a/chrome/browser/resources/about_version.html |
+++ b/chrome/browser/resources/about_version.html |
@@ -21,8 +21,13 @@ about:version template page |
<body> |
<div id="outer"> |
<div id="logo"> |
- <!-- TODO: Revert back to src= once http://crbug.com/135179 is fixed --> |
- <img id="logo-img"> |
+<if expr="pp_ifdef('android')"> |
+ <!-- Android does not support themes. --> |
+ <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo.png"> |
flackr
2012/07/27 18:03:45
I'm not sure this is necessary (moved from about_v
Ted C
2012/07/27 18:18:45
Sadly it is, android excludes all the theme source
Dan Beam
2012/07/27 18:20:59
Is it possible to use ENABLE_THEMES instead of and
flackr
2012/07/27 18:24:24
I believe grit only knows what we pass it in grit_
flackr
2012/07/27 18:26:28
In fact I'll just pass enable_themes to grit as we
|
+</if> |
+<if expr="not pp_ifdef('android')"> |
+ <img src="chrome://theme/IDR_PRODUCT_LOGO"> |
+</if> |
<div id="company" i18n-content="company"></div> |
<div id="copyright" i18n-content="copyright"></div> |
</div> |