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

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

Issue 10095029: Disable "always allowed" checkbox in chrome://plugins for disabled plug-ins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/plugins.css ('k') | chrome/browser/resources/plugins.js » ('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 <if expr="pp_ifdef('chromeos')"> 7 <if expr="pp_ifdef('chromeos')">
8 <link rel="stylesheet" 8 <link rel="stylesheet"
9 href="chrome://resources/css/chromeos/ui_account_tweaks.css"> 9 href="chrome://resources/css/chromeos/ui_account_tweaks.css">
10 </if> 10 </if>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 i18n-content="pluginDisabled">(DISABLED)</span> 74 i18n-content="pluginDisabled">(DISABLED)</span>
75 <span jsdisplay="enabledMode == 'disabledByPolicy'" 75 <span jsdisplay="enabledMode == 'disabledByPolicy'"
76 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POLICY)</ span> 76 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POLICY)</ span>
77 <span jsdisplay="enabledMode == 'enabledByPolicy'" 77 <span jsdisplay="enabledMode == 'enabledByPolicy'"
78 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLICY)</sp an> 78 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLICY)</sp an>
79 <div jsdisplay="shouldDisplayPluginDescription($this)"> 79 <div jsdisplay="shouldDisplayPluginDescription($this)">
80 <span dir="ltr" jsvalues=".innerHTML:description"> 80 <span dir="ltr" jsvalues=".innerHTML:description">
81 </div> 81 </div>
82 </div> 82 </div>
83 <div jsselect="plugin_files" class="plugin-details"> 83 <div jsselect="plugin_files" class="plugin-details">
84 <div class="show-in-tmi-mode"> 84 <div class="show-in-tmi-mode plugin-file">
85 <div jsvalues= 85 <div jsvalues=
86 ".className:isPluginEnabled($this) ? 'plugin-file-enabled' : ' plugin-file-disabled'"> 86 ".className:isPluginEnabled($this) ? 'plugin-enabled' : 'plugi n-disabled'">
87 <div><table><tr> 87 <div><table><tr>
88 <td class="plugin-details-label" 88 <td class="plugin-details-label"
89 i18n-content="pluginName">NAME:</td> 89 i18n-content="pluginName">NAME:</td>
90 <td><span dir="ltr" jscontent="name">NAME</span></td> 90 <td><span dir="ltr" jscontent="name">NAME</span></td>
91 </tr></table></div> 91 </tr></table></div>
92 <div><table> 92 <div><table>
93 <tr jsdisplay="shouldDisplayPluginDescription($this)"> 93 <tr jsdisplay="shouldDisplayPluginDescription($this)">
94 <td class="plugin-details-label" 94 <td class="plugin-details-label"
95 i18n-content="pluginDescription">DESCRIPTION:</td> 95 i18n-content="pluginDescription">DESCRIPTION:</td>
96 <td> 96 <td>
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 class="enable-group-link" 181 class="enable-group-link"
182 jsvalues=".path:name" 182 jsvalues=".path:name"
183 jsdisplay="enabledMode == 'disabledByUser'" 183 jsdisplay="enabledMode == 'disabledByUser'"
184 href="#" 184 href="#"
185 i18n-content="enable" 185 i18n-content="enable"
186 >ENABLE</a> 186 >ENABLE</a>
187 </span> 187 </span>
188 <input 188 <input
189 class="always-allow" type="checkbox" 189 class="always-allow" type="checkbox"
190 jsvalues= 190 jsvalues=
191 ".identifier:id; id:id + '-always-allowed'; .checked:alwaysA llowed"> 191 ".identifier:id; id:id + '-always-allowed'; .checked:alwaysA llowed; disabled:!isPluginEnabled($this)">
192 <label jsvalues="for:id + '-always-allowed'" 192 <label jsvalues="for:id + '-always-allowed'"
193 i18n-content="alwaysAllowed"></label> 193 i18n-content="alwaysAllowed"></label>
194 </div> 194 </div>
195 </td> 195 </td>
196 </tr> 196 </tr>
197 </table> 197 </table>
198 </div> 198 </div>
199 </div> 199 </div>
200 </div> 200 </div>
201 </div> 201 </div>
202 </div> 202 </div>
203 <script src="chrome://resources/js/util.js"></script> 203 <script src="chrome://resources/js/util.js"></script>
204 <script src="chrome://plugins/plugins.js"></script> 204 <script src="chrome://plugins/plugins.js"></script>
205 <script src="chrome://plugins/strings.js"></script> 205 <script src="chrome://plugins/strings.js"></script>
206 <script src="chrome://resources/js/cr.js"></script> 206 <script src="chrome://resources/js/cr.js"></script>
207 <script src="chrome://resources/js/i18n_template.js"></script> 207 <script src="chrome://resources/js/i18n_template.js"></script>
208 <script src="chrome://resources/js/i18n_process.js"></script> 208 <script src="chrome://resources/js/i18n_process.js"></script>
209 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 209 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
210 <if expr="pp_ifdef('chromeos')"> 210 <if expr="pp_ifdef('chromeos')">
211 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script> 211 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script>
212 </if> 212 </if>
213 </body> 213 </body>
214 </html> 214 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/plugins.css ('k') | chrome/browser/resources/plugins.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698