Index: chrome/renderer/resources/extensions/browser_action_custom_bindings.js |
diff --git a/chrome/renderer/resources/extensions/browser_action_custom_bindings.js b/chrome/renderer/resources/extensions/browser_action_custom_bindings.js |
index 8b791a71465f5af3453a33fe19263c2c3d9f5ebe..137da5bc0f37d43bffa7ffbede0f921e2edaae55 100644 |
--- a/chrome/renderer/resources/extensions/browser_action_custom_bindings.js |
+++ b/chrome/renderer/resources/extensions/browser_action_custom_bindings.js |
@@ -4,11 +4,9 @@ |
// Custom bindings for the browserAction API. |
-(function() { |
+var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
-native function GetChromeHidden(); |
- |
-GetChromeHidden().registerCustomHook('browserAction', function(bindingsAPI) { |
+chromeHidden.registerCustomHook('browserAction', function(bindingsAPI) { |
var apiFunctions = bindingsAPI.apiFunctions; |
var setIcon = bindingsAPI.setIcon; |
@@ -16,5 +14,3 @@ GetChromeHidden().registerCustomHook('browserAction', function(bindingsAPI) { |
setIcon(details, this.name, this.definition.parameters, 'browser action'); |
}); |
}); |
- |
-})(); |