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

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

Issue 9325045: [extensions] tool tip for trash icon (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 09087fe4052980c5199b6dce0a2573833d83682a..08098a04405492e25388f854ebf34e01e463c392 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -200,6 +200,7 @@ cr.define('options', function() {
// 'Remove' button.
var trashTemplate = $('template-collection').querySelector('.trash');
var trash = trashTemplate.cloneNode(true);
+ trash.title = templateData.extensionUninstall;
trash.addEventListener('click', function(e) {
chrome.send('extensionSettingsUninstall', [extension.id]);
});

Powered by Google App Engine
This is Rietveld 408576698