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

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: Add missing include Created 4 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 unified diff | Download patch
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">Blink</td> 79 <tr><td class="label">Blink</td>
81 <td class="version" id="blink_version" i18n-content="blink_version"></ td> 80 <td class="version" id="blink_version" i18n-content="blink_version"></ td>
82 </tr> 81 </tr>
83 <tr><td class="label">JavaScript</td> 82 <tr><td class="label">JavaScript</td>
84 <td class="version" id="js_engine"> 83 <td class="version" id="js_engine">
85 <span i18n-content="js_engine"></span> 84 <span i18n-content="js_engine"></span>
86 <span i18n-content="js_version"></span> 85 <span i18n-content="js_version"></span>
87 </td> 86 </td>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <tr id="compiler-section"> 119 <tr id="compiler-section">
121 <td class="label">Compiler</td> 120 <td class="label">Compiler</td>
122 <td class="version" id="compiler" i18n-content="compiler"></td> 121 <td class="version" id="compiler" i18n-content="compiler"></td>
123 </tr> 122 </tr>
124 </if> 123 </if>
125 </table> 124 </table>
126 </div> 125 </div>
127 <script src="chrome://resources/js/i18n_template.js"></script> 126 <script src="chrome://resources/js/i18n_template.js"></script>
128 </body> 127 </body>
129 </html> 128 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698