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

Unified Diff: chrome/browser/resources/options/about_page.html

Issue 7108019: Change Chrome OS version numbers to Platform versions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fixes. Created 9 years, 6 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
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>

Powered by Google App Engine
This is Rietveld 408576698