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

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

Issue 5092007: Add registered shell extensions to enumerated module list on about:conflicts.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/enumerate_modules_model_win.cc ('k') | no next file » | 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 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <style> 5 <style>
6 body { 6 body {
7 margin: 10px; 7 margin: 10px;
8 min-width: 47em; 8 min-width: 47em;
9 } 9 }
10 10
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 139
140 /** 140 /**
141 * This variable structure is here to document the structure that the template 141 * This variable structure is here to document the structure that the template
142 * expects to correctly populate the page. 142 * expects to correctly populate the page.
143 */ 143 */
144 var moduleListDataFormat = { 144 var moduleListDataFormat = {
145 'moduleList': [ 145 'moduleList': [
146 { 146 {
147 'type': 'The type of module found', 147 'type': 'The type of module found',
148 'type_description': 148 'type_description':
149 'The type of module (string), defaults to blank for regular modules', 149 'The type of module (string), defaults to blank for regular modules',
150 'status': 'The module status', 150 'status': 'The module status',
151 'location': 'The module path, not including filename', 151 'location': 'The module path, not including filename',
152 'name': 'The name of the module', 152 'name': 'The name of the module',
153 'product_name': 'The name of the product the module belongs to', 153 'product_name': 'The name of the product the module belongs to',
154 'description': 'The module description', 154 'description': 'The module description',
155 'version': 'The module version', 155 'version': 'The module version',
156 'digital_signer': 'The signer of the digital certificate for the module', 156 'digital_signer': 'The signer of the digital certificate for the module',
157 'recommended_action': 'The help tips bitmask', 157 'recommended_action': 'The help tips bitmask',
158 'possible_resolution': 'The help tips in string form', 158 'possible_resolution': 'The help tips in string form',
159 'help_url': 'The link to the Help Center article' 159 'help_url': 'The link to the Help Center article'
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 <div jsdisplay="moduleList.length > 0"> 233 <div jsdisplay="moduleList.length > 0">
234 <div class="module" jsselect="moduleList"> 234 <div class="module" jsselect="moduleList">
235 <table width="100%" cellpadding="0" cellspacing="0"> 235 <table width="100%" cellpadding="0" cellspacing="0">
236 <tr class="module-loaded"> 236 <tr class="module-loaded">
237 <td valign="top"> 237 <td valign="top">
238 <table cellpadding="2" cellspacing="0"> 238 <table cellpadding="2" cellspacing="0">
239 <tr> 239 <tr>
240 <td colspan="2"><span class="module-name" dir="ltr" 240 <td colspan="2"><span class="module-name" dir="ltr"
241 jscontent="name">NAME</span> 241 jscontent="name">NAME</span>
242 <span dir="ltr"
243 jsdisplay="type_description.length > 0"
244 >(<span dir="ltr"
245 jscontent="type_description">MODULE_TYPE</ span
246 >)</span>
242 </td> 247 </td>
243 </tr> 248 </tr>
244 <tr> 249 <tr>
245 <td width="75"><span i18n-content="headerSoftware" /></td> 250 <td width="75"><span i18n-content="headerSoftware" /></td>
246 <td><span dir="ltr" jsdisplay="type_description.length > 0"> 251 <td><span dir="ltr" jsvalues=".innerHTML:description"></span>
247 <span dir="ltr"
248 jscontent="type_description">MODULE_TYPE</span>: </span>
249 <span dir="ltr" jsvalues=".innerHTML:description"></span>
250 <span dir="ltr" jsdisplay="version.length > 0"> - </span> 252 <span dir="ltr" jsdisplay="version.length > 0"> - </span>
251 <span dir="ltr" jscontent="version">VERSION</span></td> 253 <span dir="ltr" jscontent="version">VERSION</span></td>
252 </tr> 254 </tr>
253 <tr jsdisplay="digital_signer.length > 0"> 255 <tr jsdisplay="digital_signer.length > 0">
254 <td><span i18n-content="headerSignedBy" /></td> 256 <td><span i18n-content="headerSignedBy" /></td>
255 <td><span dir="ltr" jscontent="digital_signer">SIGNER</span></td> 257 <td><span dir="ltr" jscontent="digital_signer">SIGNER</span></td>
256 </tr> 258 </tr>
257 <tr> 259 <tr>
258 <td><span i18n-content="headerLocation" /></td> 260 <td><span i18n-content="headerLocation" /></td>
259 <td><span dir="ltr" 261 <td><span dir="ltr"
(...skipping 23 matching lines...) Expand all
283 </td> 285 </td>
284 </tr> 286 </tr>
285 </table> 287 </table>
286 </div> 288 </div>
287 </div> 289 </div>
288 </div> 290 </div>
289 </div> 291 </div>
290 </div> 292 </div>
291 </body> 293 </body>
292 </html> 294 </html>
OLDNEW
« no previous file with comments | « chrome/browser/enumerate_modules_model_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698