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

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

Issue 5699005: Policy: Re-enabled plugin still disabled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace fixes only. Trybot happiness still applies. Created 9 years, 11 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 | Annotate | Revision Log
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 body { 7 body {
8 margin: 10px; 8 margin: 10px;
9 min-width: 47em; 9 min-width: 47em;
10 } 10 }
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 </td> 521 </td>
522 </tr> 522 </tr>
523 </table></div> 523 </table></div>
524 <div><table><tr> 524 <div><table><tr>
525 <td class="plugin-details-label" 525 <td class="plugin-details-label"
526 i18n-content="pluginVersion">VERSION:</td> 526 i18n-content="pluginVersion">VERSION:</td>
527 <td><span dir="ltr" jscontent="version">x.x.x.x</span></td> 527 <td><span dir="ltr" jscontent="version">x.x.x.x</span></td>
528 </tr></table></div> 528 </tr></table></div>
529 <div><table><tr> 529 <div><table><tr>
530 <td class="plugin-details-label" 530 <td class="plugin-details-label"
531 i18n-content="pluginPriority">PRIORITY:</td>
532 <td><span dir="ltr" jscontent="priority">x</span></td>
533 </tr></table></div>
534 <div><table><tr>
535 <td class="plugin-details-label"
536 i18n-content="pluginPath">PATH:</td> 531 i18n-content="pluginPath">PATH:</td>
537 <td><span dir="ltr" jscontent="path"></span></td> 532 <td><span dir="ltr" jscontent="path"></span></td>
538 </tr></table></div> 533 </tr></table></div>
539 <div><table><tr> 534 <div><table><tr>
540 <td class="plugin-details-label">&nbsp;</td> 535 <td class="plugin-details-label">&nbsp;</td>
541 <td> 536 <td>
542 <span jsdisplay="enabledMode == 'disabledByUser'" 537 <span jsdisplay="enabledMode == 'disabledByUser'"
543 i18n-content="pluginDisabled">(DISABLED)</span> 538 i18n-content="pluginDisabled">(DISABLED)</span>
544 <span jsdisplay="enabledMode == 'disabledByPolicy'" 539 <span jsdisplay="enabledMode == 'disabledByPolicy'"
545 i18n-content="pluginDisabled">(DISABLED_BY_POLICY)</sp an> 540 i18n-content="pluginDisabled">(DISABLED_BY_POLICY)</sp an>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 </td> 615 </td>
621 </tr> 616 </tr>
622 </table> 617 </table>
623 </div> 618 </div>
624 </div> 619 </div>
625 </div> 620 </div>
626 </div> 621 </div>
627 </div> 622 </div>
628 </body> 623 </body>
629 </html> 624 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698