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

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

Issue 1404063002: win: Let about:version list the C++ compiler used to build chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 2 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 | « no previous file | 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;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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <tr id="variations-section"> 94 <tr id="variations-section">
95 <td class="label" i18n-content="variations_name"></td> 95 <td class="label" i18n-content="variations_name"></td>
96 <td class="version" id="variations-list"></td> 96 <td class="version" id="variations-list"></td>
97 </tr> 97 </tr>
98 <if expr="is_android"> 98 <if expr="is_android">
99 <tr id="build-id-section"> 99 <tr id="build-id-section">
100 <td class="label" i18n-content="build_id_name"></td> 100 <td class="label" i18n-content="build_id_name"></td>
101 <td class="version" i18n-content="build_id"></td> 101 <td class="version" i18n-content="build_id"></td>
102 </tr> 102 </tr>
103 </if> 103 </if>
104 <if expr="is_win">
105 <tr id="compiler-section">
106 <td class="label">Compiler</td>
107 <td class="version" id="compiler" i18n-content="compiler"></td>
108 </tr>
109 </if>
104 </table> 110 </table>
105 </div> 111 </div>
106 <script src="chrome://resources/js/i18n_template.js"></script> 112 <script src="chrome://resources/js/i18n_template.js"></script>
107 </body> 113 </body>
108 </html> 114 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/version_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698