diff options
Diffstat (limited to 'chrome/renderer/resources')
-rw-r--r-- | chrome/renderer/resources/event_bindings.js | 10 | ||||
-rw-r--r-- | chrome/renderer/resources/extension_process_bindings.js | 5 |
2 files changed, 1 insertions, 14 deletions
diff --git a/chrome/renderer/resources/event_bindings.js b/chrome/renderer/resources/event_bindings.js index 7ea6bbf..aaea01c 100644 --- a/chrome/renderer/resources/event_bindings.js +++ b/chrome/renderer/resources/event_bindings.js @@ -45,20 +45,12 @@ var chrome = chrome || {}; // An array of all attached event objects, used for detaching on unload. var allAttachedEvents = []; - // By default (for content scripts), this function returns false. Extension - // contexts override this to do the right thing. - chromeHidden.canAccessIncognito = function() { - return false; - } - chromeHidden.Event = {}; // Dispatches a named event with the given JSON array, which is deserialized // before dispatch. The JSON array is the list of arguments that will be // sent with the event callback. - chromeHidden.Event.dispatchJSON = function(name, args, hasIncognitoData) { - if (hasIncognitoData && !chromeHidden.canAccessIncognito()) - return; + chromeHidden.Event.dispatchJSON = function(name, args) { if (attachedNamedEvents[name]) { if (args) { args = JSON.parse(args); diff --git a/chrome/renderer/resources/extension_process_bindings.js b/chrome/renderer/resources/extension_process_bindings.js index 7e803b5..5d80919 100644 --- a/chrome/renderer/resources/extension_process_bindings.js +++ b/chrome/renderer/resources/extension_process_bindings.js @@ -18,17 +18,12 @@ var chrome = chrome || {}; native function GetPopupParentWindow(); native function GetPopupView(); native function SetExtensionActionIcon(); - native function CanAccessIncognito(); if (!chrome) chrome = {}; var chromeHidden = GetChromeHidden(); - chromeHidden.canAccessIncognito = function() { - return CanAccessIncognito(); - } - // Validate arguments. chromeHidden.validationTypes = []; chromeHidden.validate = function(args, schemas) { |