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

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

Issue 2797433002: Include Google Update integration details in crash keys and about:version. (Closed)
Patch Set: Created 3 years, 8 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <div id="company" i18n-content="company"></div> 43 <div id="company" i18n-content="company"></div>
44 <div id="copyright" i18n-content="copyright"></div> 44 <div id="copyright" i18n-content="copyright"></div>
45 </div> 45 </div>
46 <table id="inner" cellpadding="0" cellspacing="0" border="0"> 46 <table id="inner" cellpadding="0" cellspacing="0" border="0">
47 <tr><td class="label" i18n-content="application_label"></td> 47 <tr><td class="label" i18n-content="application_label"></td>
48 <td class="version" id="version"> 48 <td class="version" id="version">
49 <span i18n-content="version"></span> 49 <span i18n-content="version"></span>
50 (<span i18n-content="official"></span>) 50 (<span i18n-content="official"></span>)
51 <span i18n-content="version_modifier"></span> 51 <span i18n-content="version_modifier"></span>
52 <span i18n-content="version_bitsize"></span> 52 <span i18n-content="version_bitsize"></span>
53 <span i18n-content="update_cohort_name"></span>
tommycli 2017/04/03 15:36:36 Does this also need to be within an <if expr="is_w
grt (UTC plus 2) 2017/04/03 19:54:33 It's harmless without, but I think it makes sense
53 </td> 54 </td>
54 </tr> 55 </tr>
55 <tr> 56 <tr>
56 <td class="label" i18n-content="revision"></td> 57 <td class="label" i18n-content="revision"></td>
57 <td class="version"> 58 <td class="version">
58 <span i18n-content="cl"></span> 59 <span i18n-content="cl"></span>
59 </td> 60 </td>
60 </tr> 61 </tr>
61 <if expr="not chromeos"> 62 <if expr="not chromeos">
62 <tr> 63 <tr>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 <tr id="compiler-section"> 138 <tr id="compiler-section">
138 <td class="label">Compiler</td> 139 <td class="label">Compiler</td>
139 <td class="version" id="compiler" i18n-content="compiler"></td> 140 <td class="version" id="compiler" i18n-content="compiler"></td>
140 </tr> 141 </tr>
141 </if> 142 </if>
142 </table> 143 </table>
143 </div> 144 </div>
144 <script src="chrome://resources/js/i18n_template.js"></script> 145 <script src="chrome://resources/js/i18n_template.js"></script>
145 </body> 146 </body>
146 </html> 147 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698