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

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

Issue 2659373002: Partial merge of https://crrev.com/b8e1ac73c904f3134c4be5fd978ef46de1b95279. (Closed)
Patch Set: Created 3 years, 10 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 | « chrome/browser/resources/plugins.css ('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;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
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="chrome://resources/css/text_defaults.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="plugins.css"> 7 <link rel="stylesheet" href="plugins.css">
8 <if expr="chromeos"> 8 <if expr="chromeos">
9 <link rel="stylesheet" 9 <link rel="stylesheet"
10 href="chrome://resources/css/chromeos/ui_account_tweaks.css"> 10 href="chrome://resources/css/chromeos/ui_account_tweaks.css">
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 i18n-content="pluginType">TYPE:</td> 116 i18n-content="pluginType">TYPE:</td>
117 <td><span dir="ltr" jscontent="type"></span></td> 117 <td><span dir="ltr" jscontent="type"></span></td>
118 </tr></table></div> 118 </tr></table></div>
119 <div><table><tr> 119 <div><table><tr>
120 <td class="plugin-details-label">&nbsp;</td> 120 <td class="plugin-details-label">&nbsp;</td>
121 <td> 121 <td>
122 <span jsdisplay="enabled_mode == 'disabledByPolicy'" 122 <span jsdisplay="enabled_mode == 'disabledByPolicy'"
123 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POL ICY)</span> 123 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POL ICY)</span>
124 <span jsdisplay="enabled_mode == 'enabledByPolicy'" 124 <span jsdisplay="enabled_mode == 'enabledByPolicy'"
125 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLIC Y)</span> 125 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLIC Y)</span>
126 <span guest-visibility="disabled">
127 <a
128 class="disable-plugin-link"
129 jsvalues=".path:path"
130 jsdisplay="enabled_mode == 'enabledByUser'"
131 href="#"
132 i18n-content="disable"
133 >DISABLE</a>
134 <a
135 class="enable-plugin-link"
136 jsvalues=".path:path"
137 jsdisplay="enabled_mode == 'disabledByUser'"
138 href="#"
139 i18n-content="enable"
140 >ENABLE</a>
141 </span>
142 </td> 126 </td>
143 </tr></table></div> 127 </tr></table></div>
144 <table><tr jsdisplay="mime_types.length > 0"> 128 <table><tr jsdisplay="mime_types.length > 0">
145 <td class="plugin-details-label" 129 <td class="plugin-details-label"
146 i18n-content="pluginMimeTypes">MIME_TYPES:</td> 130 i18n-content="pluginMimeTypes">MIME_TYPES:</td>
147 <td><table width="100%" class="mime-types"> 131 <td><table width="100%" class="mime-types">
148 <tr class="header"> 132 <tr class="header">
149 <td i18n-content="pluginMimeTypesMimeType" 133 <td i18n-content="pluginMimeTypesMimeType"
150 >MIME type</td> 134 >MIME type</td>
151 <td i18n-content="pluginMimeTypesDescription" 135 <td i18n-content="pluginMimeTypesDescription"
(...skipping 13 matching lines...) Expand all
165 </td></tr> 149 </td></tr>
166 </table></td> 150 </table></td>
167 </tr> 151 </tr>
168 </table></td> 152 </table></td>
169 </tr></table> 153 </tr></table>
170 </div> 154 </div>
171 </div> 155 </div>
172 </div> 156 </div>
173 </div> 157 </div>
174 <div class="plugin-actions" guest-visibility="disabled"> 158 <div class="plugin-actions" guest-visibility="disabled">
175 <span>
176 <a
177 class="disable-group-link"
178 jsvalues=".path:name"
179 jsdisplay="enabled_mode == 'enabledByUser'"
180 href="#"
181 i18n-content="disable"
182 >DISABLE</a>
183 <a
184 class="enable-group-link"
185 jsvalues=".path:name"
186 jsdisplay="enabled_mode == 'disabledByUser'"
187 href="#"
188 i18n-content="enable"
189 >ENABLE</a>
190 </span>
191 <input 159 <input
192 class="always-allow" type="checkbox" 160 class="always-allow" type="checkbox"
193 jsvalues= 161 jsvalues=
194 ".identifier:id; id:id + '-always-allowed'; .checked:always_ allowed; disabled:isPluginTrusted($this) || !isPluginEnabled($this) || isPluginP olicyClickToPlay($this)"> 162 ".identifier:id; id:id + '-always-allowed'; .checked:always_ allowed; disabled:isPluginTrusted($this) || !isPluginEnabled($this) || isPluginP olicyClickToPlay($this)">
195 <label jsvalues="for:id + '-always-allowed'" 163 <label jsvalues="for:id + '-always-allowed'"
196 i18n-content="alwaysAllowed"></label> 164 i18n-content="alwaysAllowed"></label>
197 </div> 165 </div>
198 </td> 166 </td>
199 </tr> 167 </tr>
200 </table> 168 </table>
201 </div> 169 </div>
202 </div> 170 </div>
203 </div> 171 </div>
204 </div> 172 </div>
205 </div> 173 </div>
206 <script src="chrome://resources/js/util.js"></script> 174 <script src="chrome://resources/js/util.js"></script>
207 <script src="chrome://resources/js/cr.js"></script> 175 <script src="chrome://resources/js/cr.js"></script>
208 <script src="chrome://plugins/plugins.js"></script> 176 <script src="chrome://plugins/plugins.js"></script>
209 <if expr="chromeos"> 177 <if expr="chromeos">
210 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script> 178 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script>
211 </if> 179 </if>
212 180
213 <script src="chrome://resources/js/load_time_data.js"></script> 181 <script src="chrome://resources/js/load_time_data.js"></script>
214 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 182 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
215 <script src="chrome://plugins/strings.js"></script> 183 <script src="chrome://plugins/strings.js"></script>
216 <script src="chrome://resources/js/i18n_template.js"></script> 184 <script src="chrome://resources/js/i18n_template.js"></script>
217 </body> 185 </body>
218 </html> 186 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/plugins.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698