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

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

Issue 2683793005: Let disabled/terminated extensions show ErrorConsole. (Closed)
Patch Set: sync 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 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 610515a29051b5b0137a6feb8f3292feb09ab0e2..df40e770919c07ebd26ca22383aa53df8e2e80f3 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -464,8 +464,7 @@ cr.define('extensions', function() {
var extensionId = extension.id;
assert(this.extensions_.length > 0);
var newEx = this.extensions_.filter(function(e) {
- return e.state == chrome.developerPrivate.ExtensionState.ENABLED &&
- e.id == extensionId;
+ return e.id == extensionId;
})[0];
var errors = newEx.manifestErrors.concat(newEx.runtimeErrors);
extensions.ExtensionErrorOverlay.getInstance().setErrorsAndShowOverlay(
« 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