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

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

Issue 8362009: Add plugin type (NPAPI, PPAPI, etc.) to chrome://plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed WebPluginInfo::PluginType change Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/plugins_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 <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 <link rel="stylesheet" href="plugins.css"/> 6 <link rel="stylesheet" href="plugins.css"/>
7 </head> 7 </head>
8 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 8 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
9 <div id="body-container" style="visibility:hidden"> 9 <div id="body-container" style="visibility:hidden">
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 <td class="plugin-details-label" 98 <td class="plugin-details-label"
99 i18n-content="pluginVersion">VERSION:</td> 99 i18n-content="pluginVersion">VERSION:</td>
100 <td><span dir="ltr" jscontent="version">x.x.x.x</span></td> 100 <td><span dir="ltr" jscontent="version">x.x.x.x</span></td>
101 </tr></table></div> 101 </tr></table></div>
102 <div><table><tr> 102 <div><table><tr>
103 <td class="plugin-details-label" 103 <td class="plugin-details-label"
104 i18n-content="pluginPath">PATH:</td> 104 i18n-content="pluginPath">PATH:</td>
105 <td><span dir="ltr" jscontent="path"></span></td> 105 <td><span dir="ltr" jscontent="path"></span></td>
106 </tr></table></div> 106 </tr></table></div>
107 <div><table><tr> 107 <div><table><tr>
108 <td class="plugin-details-label"
109 i18n-content="pluginType">TYPE:</td>
110 <td><span dir="ltr" jscontent="type"></span></td>
111 </tr></table></div>
112 <div><table><tr>
108 <td class="plugin-details-label">&nbsp;</td> 113 <td class="plugin-details-label">&nbsp;</td>
109 <td> 114 <td>
110 <span jsdisplay="enabledMode == 'disabledByPolicy'" 115 <span jsdisplay="enabledMode == 'disabledByPolicy'"
111 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POL ICY)</span> 116 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POL ICY)</span>
112 <span jsdisplay="enabledMode == 'enabledByPolicy'" 117 <span jsdisplay="enabledMode == 'enabledByPolicy'"
113 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLIC Y)</span> 118 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLIC Y)</span>
114 <span> 119 <span>
115 <a 120 <a
116 class="disable-plugin-link" 121 class="disable-plugin-link"
117 jsvalues=".path:path" 122 jsvalues=".path:path"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 </div> 190 </div>
186 </div> 191 </div>
187 </div> 192 </div>
188 <script src="chrome://plugins/plugins.js"></script> 193 <script src="chrome://plugins/plugins.js"></script>
189 <script src="chrome://plugins/strings.js"></script> 194 <script src="chrome://plugins/strings.js"></script>
190 <script src="chrome://resources/js/i18n_template.js"></script> 195 <script src="chrome://resources/js/i18n_template.js"></script>
191 <script src="chrome://resources/js/i18n_process.js"></script> 196 <script src="chrome://resources/js/i18n_process.js"></script>
192 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 197 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
193 </body> 198 </body>
194 </html> 199 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/plugins_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698