Index: chrome/browser/resources/options/about_page.html |
diff --git a/chrome/browser/resources/options/about_page.html b/chrome/browser/resources/options/about_page.html |
index 05baa8d0c241c5c1522974730b5b36b11af3ede5..74056d26bf9c2da71ed56a5aaa4e95c7e9493f79 100644 |
--- a/chrome/browser/resources/options/about_page.html |
+++ b/chrome/browser/resources/options/about_page.html |
@@ -4,14 +4,19 @@ |
<section> |
<div> |
<!-- White space is significant between spans. --> |
- <div><span i18n-content="firmware"></span> <span id="osFirmware0"> |
- <span class="loading" i18n-content="loading"></span></span></div> |
- <div><span i18n-content="os"></span> <span id="osVersion0"> |
- <span class="loading" i18n-content="loading"></span></span></div> |
<div> |
<span i18n-content="browser"></span> |
<span i18n-content="browser_version"></span> |
</div> |
+<if expr="not pp_ifdef('chromeos')"> |
+ <div><span i18n-content="os"></span> <span id="osVersion0"> |
+</if> |
+<if expr="pp_ifdef('chromeos')"> |
+ <div><span>Platform</span> <span id="osVersion0"> |
+</if> |
+ <span class="loading" i18n-content="loading"></span></span></div> |
+ <div><span i18n-content="firmware"></span> <span id="osFirmware0"> |
+ <span class="loading" i18n-content="loading"></span></span></div> |
<div> |
<button id="moreInfoButton" class="link-button" |
i18n-content="more_info"></button> |
@@ -35,19 +40,24 @@ |
</div> |
DaveMoore
2011/06/08 21:10:37
Why has this moved sections?
rkc
2011/06/08 21:39:57
I re-ordered the sections to move the Chrome versi
|
</section> |
<section> |
- <h3 i18n-content="firmware"></h3> |
- <div id="osFirmware1"> |
- <span class="loading" i18n-content="loading"></span> |
+ <h3 i18n-content="browser"></h3> |
+ <div i18n-content="browser_version"></div> |
</section> |
<section> |
+<if expr="not pp_ifdef('chromeos')"> |
<h3 i18n-content="os"></h3> |
+</if> |
+<if expr="pp_ifdef('chromeos')"> |
+ <h3>Platform</h3> |
+</if> |
<div id="osVersion1"> |
<span class="loading" i18n-content="loading"></span> |
</div> |
</section> |
<section> |
- <h3 i18n-content="browser"></h3> |
- <div i18n-content="browser_version"></div> |
+ <h3 i18n-content="firmware"></h3> |
+ <div id="osFirmware1"> |
+ <span class="loading" i18n-content="loading"></span> |
</section> |
<section> |
<h3>WebKit</h3> |