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

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

Issue 11189094: Implement sideload wipeout for Extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 | « chrome/browser/extensions/extension_service.cc ('k') | chrome/browser/resources/extensions/extensions.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions/extension_list.js
===================================================================
--- chrome/browser/resources/extensions/extension_list.js (revision 162977)
+++ chrome/browser/resources/extensions/extension_list.js (working copy)
@@ -83,6 +83,12 @@
var version = node.querySelector('.extension-version');
version.textContent = extension.version;
+ var disableReason = node.querySelector('.extension-disable-reason');
+ disableReason.textContent = extension.disableReason;
+
+ var locationText = node.querySelector('.location-text');
+ locationText.textContent = extension.locationText;
+
var description = node.querySelector('.extension-description span');
description.textContent = extension.description;
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/browser/resources/extensions/extensions.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698