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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/plugin_group.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/plugins.html
diff --git a/chrome/browser/resources/plugins.html b/chrome/browser/resources/plugins.html
index dbaf7555795a9dc15290cdfcf9cb2c214f307b49..fa3d893cec6be949445c6804421653f11d29263c 100644
--- a/chrome/browser/resources/plugins.html
+++ b/chrome/browser/resources/plugins.html
@@ -579,28 +579,27 @@ document.addEventListener('DOMContentLoaded', requestPluginsData);
<td>
<span jsdisplay="enabledMode == 'disabledByUser'"
i18n-content="pluginDisabled">(DISABLED)</span>
- <span>
<span jsdisplay="enabledMode == 'disabledByPolicy'"
i18n-content="pluginDisabled">(DISABLED_BY_POLICY)</span>
<span>
- <a
- jsvalues=".path:name"
- jsdisplay="enabledMode == 'enabled'"
- onclick="handleEnablePlugin(this, false, false)"
- href="javascript:void(0);"
- i18n-content="disable"
- >DISABLE</a>
- <a
- jsvalues=".path:name"
- jsdisplay="enabledMode == 'disabledByUser'"
- onclick="handleEnablePlugin(this, true, false)"
- href="javascript:void(0);"
- i18n-content="enable"
- >ENABLE</a>
- <span
- jsdisplay="enabledMode == 'disabledByPolicy'"
- i18n-content="pluginCannotBeEnabledDueToPolicy"
- >CANNOT_ENABLE</span>
+ <a
+ jsvalues=".path:path"
+ jsdisplay="enabledMode == 'enabled'"
+ onclick="handleEnablePlugin(this, false, false)"
+ href="javascript:void(0);"
+ i18n-content="disable"
+ >DISABLE</a>
+ <a
+ jsvalues=".path:path"
+ jsdisplay="enabledMode == 'disabledByUser'"
+ onclick="handleEnablePlugin(this, true, false)"
+ href="javascript:void(0);"
+ i18n-content="enable"
+ >ENABLE</a>
+ <span
+ jsdisplay="enabledMode == 'disabledByPolicy'"
+ i18n-content="pluginCannotBeEnabledDueToPolicy"
+ >CANNOT_ENABLE</span>
</span>
</td>
</tr></table></div>
« 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