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

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

Issue 7976023: Remove the old chrome://extensions page, since the URL now redirects to the new Settings page.BUG... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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/resources/extensions_ui.js ('k') | chrome/browser/ui/webui/chrome_web_ui_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/extension_list.js
===================================================================
--- chrome/browser/resources/options/extension_list.js (revision 102092)
+++ chrome/browser/resources/options/extension_list.js (working copy)
@@ -388,6 +388,15 @@
link.href = '#';
link.addEventListener('click', this.sendInspectMessage_.bind(this));
content.appendChild(link);
+
+ if (extension.views[i].incognito) {
+ var incognito = this.ownerDocument.createElement('span');
+ incognito.classList.add('extension-links-view');
+ incognito.textContent =
+ localStrings.getString('viewIncognito');
+ content.appendChild(incognito);
+ }
+
td.appendChild(content);
tr.appendChild(td);
« no previous file with comments | « chrome/browser/resources/extensions_ui.js ('k') | chrome/browser/ui/webui/chrome_web_ui_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698