| Index: chrome/browser/resources/extensions/extension_list.js
|
| diff --git a/chrome/browser/resources/extensions/extension_list.js b/chrome/browser/resources/extensions/extension_list.js
|
| index 929bcb15c36af242c016abbb14152aa5f9c3048b..633d3f3c5508efc1aa396774744296268be5b8f1 100644
|
| --- a/chrome/browser/resources/extensions/extension_list.js
|
| +++ b/chrome/browser/resources/extensions/extension_list.js
|
| @@ -317,6 +317,12 @@ cr.define('options', function() {
|
| siteLink.hidden = false;
|
| }
|
|
|
| + // If the ExtensionInfoDialog is enabled, hide the site link (since it's
|
| + // available from within the dialog anyway).
|
| + if (extension.enableExtensionInfoDialog) {
|
| + siteLink.hidden = true;
|
| + }
|
| +
|
| if (extension.allow_reload) {
|
| // The 'Reload' link.
|
| var reload = node.querySelector('.reload-link');
|
|
|