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

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

Issue 15812004: Remove the Activity Log UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
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 4a5bdee94670f11c806450fced9c9ffdb3d0449c..ea232a5732ffcb067914efea014e972abb5034f9 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -164,23 +164,6 @@ cr.define('options', function() {
e.preventDefault();
});
- if (extension.allow_activity) {
- var activity = node.querySelector('.activity-link');
- activity.addEventListener('click', function(e) {
- chrome.send('navigateToUrl', [
- 'chrome://extension-activity?extensionId=' + extension.id,
- '_blank',
- e.button,
- e.altKey,
- e.ctrlKey,
- e.metaKey,
- e.shiftKey
- ]);
- e.preventDefault();
- });
- activity.hidden = false;
- }
-
// The 'View in Web Store/View Web Site' link.
if (extension.homepageUrl) {
var siteLink = node.querySelector('.site-link');
« no previous file with comments | « chrome/browser/resources/extensions/extension_activity.js ('k') | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698