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

Unified Diff: chrome/renderer/resources/extension_process_bindings.js

Issue 2963012: Only setup the contextMenus listener if we're actually using contextMenus.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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/renderer/resources/extension_process_bindings.js
===================================================================
--- chrome/renderer/resources/extension_process_bindings.js (revision 52384)
+++ chrome/renderer/resources/extension_process_bindings.js (working copy)
@@ -268,15 +268,21 @@
chromeHidden.contextMenus.handlers = {};
var eventName = "contextMenus/" + extensionId;
chromeHidden.contextMenus.event = new chrome.Event(eventName);
- chromeHidden.contextMenus.event.addListener(function() {
- // An extension context menu item has been clicked on - fire the onclick
- // if there is one.
- var id = arguments[0].menuItemId;
- var onclick = chromeHidden.contextMenus.handlers[id];
- if (onclick) {
- onclick.apply(onclick, arguments);
+ chromeHidden.contextMenus.ensureListenerSetup = function() {
+ if (chromeHidden.contextMenus.listening) {
+ return;
}
- });
+ chromeHidden.contextMenus.listening = true;
+ chromeHidden.contextMenus.event.addListener(function() {
+ // An extension context menu item has been clicked on - fire the onclick
+ // if there is one.
+ var id = arguments[0].menuItemId;
+ var onclick = chromeHidden.contextMenus.handlers[id];
+ if (onclick) {
+ onclick.apply(onclick, arguments);
+ }
+ });
+ };
}
function setupOmniboxEvents(extensionId) {
@@ -616,6 +622,7 @@
// Set up the onclick handler if we were passed one in the request.
var onclick = request.args.length ? request.args[0].onclick : null;
if (onclick) {
+ chromeHidden.contextMenus.ensureListenerSetup();
chromeHidden.contextMenus.handlers[id] = onclick;
}
};
« 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