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

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

Issue 1019303004: [Extensions] Fix reloading crashed extensions from chrome://extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 61167e2b367238518aefcc0dab3d1624738b4b4b..07a53ba6a61fc8e294fb1f0987c19238dfe3881c 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -404,7 +404,7 @@ cr.define('extensions', function() {
// The 'Reload' terminated link.
row.setupColumn('.terminated-reload-link', 'terminatedReload', 'click',
function(e) {
- chrome.send('extensionSettingsReload', [extension.id]);
+ chrome.developerPrivate.reload(extension.id, {failQuietly: true});
});
// The 'Repair' corrupted link.
« 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