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

Side by Side Diff: components/version_ui/resources/about_version.html

Issue 1486403002: Mojo-ifying chrome://version. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change slashes Created 4 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 unified diff | Download patch
« no previous file with comments | « components/version_ui/OWNERS ('k') | components/version_ui/resources/about_version.js » ('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;lang:language"> 7 <html id="t" i18n-values="dir:textdirection;lang:language">
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 <span id="os_version" i18n-content="os_version"></span> 64 <span id="os_version" i18n-content="os_version"></span>
65 </td> 65 </td>
66 </if> 66 </if>
67 <if expr="chromeos"> 67 <if expr="chromeos">
68 <tr><td class="label" i18n-content="platform"></td> 68 <tr><td class="label" i18n-content="platform"></td>
69 <td class="version" id="os_type"> 69 <td class="version" id="os_type">
70 <span id="os_version" i18n-content="os_version"></span> 70 <span id="os_version" i18n-content="os_version"></span>
71 </td> 71 </td>
72 </if> 72 </if>
73 </tr> 73 </tr>
74 <tr id="arc_holder"><td class="label" i18n-content="arc_label"></td> 74 <tr id="arc_holder" hidden>
75 <td class="version"> 75 <td class="label" i18n-content="arc_label"></td>
76 <span id="arc_version"></span> 76 <td class="version"><span id="arc_version"></span></td>
77 </td>
78 </tr> 77 </tr>
79 <if expr="not is_ios"> 78 <if expr="not is_ios">
80 <tr><td class="label">JavaScript</td> 79 <tr><td class="label">JavaScript</td>
81 <td class="version" id="js_engine"> 80 <td class="version" id="js_engine">
82 <span i18n-content="js_engine"></span> 81 <span i18n-content="js_engine"></span>
83 <span i18n-content="js_version"></span> 82 <span i18n-content="js_version"></span>
84 </td> 83 </td>
85 </tr> 84 </tr>
86 </if> 85 </if>
87 <if expr="not is_android and not is_ios"> 86 <if expr="not is_android and not is_ios">
(...skipping 29 matching lines...) Expand all
117 <tr id="compiler-section"> 116 <tr id="compiler-section">
118 <td class="label">Compiler</td> 117 <td class="label">Compiler</td>
119 <td class="version" id="compiler" i18n-content="compiler"></td> 118 <td class="version" id="compiler" i18n-content="compiler"></td>
120 </tr> 119 </tr>
121 </if> 120 </if>
122 </table> 121 </table>
123 </div> 122 </div>
124 <script src="chrome://resources/js/i18n_template.js"></script> 123 <script src="chrome://resources/js/i18n_template.js"></script>
125 </body> 124 </body>
126 </html> 125 </html>
OLDNEW
« no previous file with comments | « components/version_ui/OWNERS ('k') | components/version_ui/resources/about_version.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698