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

Unified Diff: chrome/browser/resources/extensions/extension_list.js

Issue 491703003: Fix call to setExtensionAndShowOverlay() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 08fb75e0ad1412d505af64b9625c3ff909b23254..d39599d9ac7528c3e08485deb3abc74eee0ec175 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -195,7 +195,7 @@ cr.define('options', function() {
options.addEventListener('click', function(e) {
if (this.data_.enableEmbeddedExtensionOptions) {
extensions.ExtensionOptionsOverlay.getInstance().
- setExtensionAndShowOverlay([extension.id], extension.name);
+ setExtensionAndShowOverlay(extension.id, extension.name);
} else {
chrome.send('extensionSettingsOptions', [extension.id]);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698