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

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

Issue 3038055: Re-enable the link to disable invididual plug-ins in a group. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 4 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/common/plugin_group.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 <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 <title i18n-content="pluginsTitle"></title> 5 <title i18n-content="pluginsTitle"></title>
6 <style> 6 <style>
7 7
8 body { 8 body {
9 margin: 10px; 9 margin: 10px;
10 min-width: 47em; 10 min-width: 47em;
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 <div><table><tr> 572 <div><table><tr>
573 <td class="plugin-details-label" 573 <td class="plugin-details-label"
574 i18n-content="pluginPath">PATH:</td> 574 i18n-content="pluginPath">PATH:</td>
575 <td><span dir="ltr" jscontent="path"></span></td> 575 <td><span dir="ltr" jscontent="path"></span></td>
576 </tr></table></div> 576 </tr></table></div>
577 <div><table><tr> 577 <div><table><tr>
578 <td class="plugin-details-label">&nbsp;</td> 578 <td class="plugin-details-label">&nbsp;</td>
579 <td> 579 <td>
580 <span jsdisplay="enabledMode == 'disabledByUser'" 580 <span jsdisplay="enabledMode == 'disabledByUser'"
581 i18n-content="pluginDisabled">(DISABLED)</span> 581 i18n-content="pluginDisabled">(DISABLED)</span>
582 <span>
583 <span jsdisplay="enabledMode == 'disabledByPolicy'" 582 <span jsdisplay="enabledMode == 'disabledByPolicy'"
584 i18n-content="pluginDisabled">(DISABLED_BY_POLICY)</sp an> 583 i18n-content="pluginDisabled">(DISABLED_BY_POLICY)</sp an>
585 <span> 584 <span>
586 <a 585 <a
587 jsvalues=".path:name" 586 jsvalues=".path:path"
588 jsdisplay="enabledMode == 'enabled'" 587 jsdisplay="enabledMode == 'enabled'"
589 onclick="handleEnablePlugin(this, false, false)" 588 onclick="handleEnablePlugin(this, false, false)"
590 href="javascript:void(0);" 589 href="javascript:void(0);"
591 i18n-content="disable" 590 i18n-content="disable"
592 >DISABLE</a> 591 >DISABLE</a>
593 <a 592 <a
594 jsvalues=".path:name" 593 jsvalues=".path:path"
595 jsdisplay="enabledMode == 'disabledByUser'" 594 jsdisplay="enabledMode == 'disabledByUser'"
596 onclick="handleEnablePlugin(this, true, false)" 595 onclick="handleEnablePlugin(this, true, false)"
597 href="javascript:void(0);" 596 href="javascript:void(0);"
598 i18n-content="enable" 597 i18n-content="enable"
599 >ENABLE</a> 598 >ENABLE</a>
600 <span 599 <span
601 jsdisplay="enabledMode == 'disabledByPolicy'" 600 jsdisplay="enabledMode == 'disabledByPolicy'"
602 i18n-content="pluginCannotBeEnabledDueToPolicy" 601 i18n-content="pluginCannotBeEnabledDueToPolicy"
603 >CANNOT_ENABLE</span> 602 >CANNOT_ENABLE</span>
604 </span> 603 </span>
605 </td> 604 </td>
606 </tr></table></div> 605 </tr></table></div>
607 <table><tr jsdisplay="mimeTypes.length > 0"> 606 <table><tr jsdisplay="mimeTypes.length > 0">
608 <td class="plugin-details-label" 607 <td class="plugin-details-label"
609 i18n-content="pluginMimeTypes">MIME_TYPES:</td> 608 i18n-content="pluginMimeTypes">MIME_TYPES:</td>
610 <td><table width="100%" class="mime-types"> 609 <td><table width="100%" class="mime-types">
611 <tr class="header"> 610 <tr class="header">
612 <td i18n-content="pluginMimeTypesMimeType" 611 <td i18n-content="pluginMimeTypesMimeType"
613 >MIME type</td> 612 >MIME type</td>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 </td> 658 </td>
660 </tr> 659 </tr>
661 </table> 660 </table>
662 </div> 661 </div>
663 </div> 662 </div>
664 </div> 663 </div>
665 </div> 664 </div>
666 </div> 665 </div>
667 </body> 666 </body>
668 </html> 667 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/common/plugin_group.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698