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

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

Issue 583003002: Make Android about:version page more similar to other platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 3 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/version_ui.cc » ('j') | 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 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
(...skipping 20 matching lines...) Expand all
31 </if> 31 </if>
32 <if expr="not enable_themes"> 32 <if expr="not enable_themes">
33 <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_log o.png"> 33 <img src="../../app/theme/default_100_percent/%DISTRIBUTION%/product_log o.png">
34 </if> 34 </if>
35 <div id="company" i18n-content="company"></div> 35 <div id="company" i18n-content="company"></div>
36 <div id="copyright" i18n-content="copyright"></div> 36 <div id="copyright" i18n-content="copyright"></div>
37 </div> 37 </div>
38 <table id="inner" cellpadding="0" cellspacing="0" border="0"> 38 <table id="inner" cellpadding="0" cellspacing="0" border="0">
39 <tr><td class="label" i18n-content="application_label"></td> 39 <tr><td class="label" i18n-content="application_label"></td>
40 <td class="version" id="version"> 40 <td class="version" id="version">
41 <if expr="is_android">
42 <span i18n-content="application_name"></span>
43 <span i18n-content="application_version_name"></span>
44 <span i18n-content="application_version_code"></span>
45 </if>
46 <if expr="not is_android">
47 <span i18n-content="version"></span> 41 <span i18n-content="version"></span>
48 (<span i18n-content="official"></span>) 42 (<span i18n-content="official"></span>)
49 <span i18n-content="version_modifier"></span> 43 <span i18n-content="version_modifier"></span>
50 </td> 44 </td>
51 </tr> 45 </tr>
52 <tr> 46 <tr>
53 <td class="label" i18n-content="revision"></td> 47 <td class="label" i18n-content="revision"></td>
54 <td class="version"> 48 <td class="version">
55 <span i18n-content="cl"></span> 49 <span i18n-content="cl"></span>
56 </if>
57 </td> 50 </td>
58 </tr> 51 </tr>
59 <if expr="not chromeos"> 52 <if expr="not chromeos">
60 <tr><td class="label" i18n-content="os_name"></td> 53 <tr><td class="label" i18n-content="os_name"></td>
61 <td class="version" id="os_type"> 54 <td class="version" id="os_type">
62 <span i18n-content="os_type"></span> 55 <span i18n-content="os_type"></span>
63 <span id="os_version" i18n-content="os_version"></span> 56 <span id="os_version" i18n-content="os_version"></span>
64 </td> 57 </td>
65 </if> 58 </if>
66 <if expr="chromeos"> 59 <if expr="chromeos">
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 <tr id="build-id-section"> 97 <tr id="build-id-section">
105 <td class="label" i18n-content="build_id_name"></td> 98 <td class="label" i18n-content="build_id_name"></td>
106 <td class="version" i18n-content="build_id"></td> 99 <td class="version" i18n-content="build_id"></td>
107 </tr> 100 </tr>
108 </if> 101 </if>
109 </table> 102 </table>
110 </div> 103 </div>
111 <script src="chrome://resources/js/i18n_template2.js"></script> 104 <script src="chrome://resources/js/i18n_template2.js"></script>
112 </body> 105 </body>
113 </html> 106 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/version_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698