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

Unified Diff: chrome/renderer/resources/extensions/browser_action_custom_bindings.js

Issue 12517011: Added activity logging for ext APIs with custom bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modified setHandleRequest to avoid double logging Created 7 years, 9 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/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 d90ab18235c3e7ac53f9429e0b8c9edc1c44ffa8..9bb9c31d20053e94dc84845ed1993fc14c7fe4e5 100644
--- a/chrome/renderer/resources/extensions/browser_action_custom_bindings.js
+++ b/chrome/renderer/resources/extensions/browser_action_custom_bindings.js
@@ -14,7 +14,7 @@ binding.registerCustomHook(function(bindingsAPI) {
apiFunctions.setHandleRequest('setIcon', function(details, callback) {
setIcon(details, callback, this.name, this.definition.parameters,
'browser action');
- });
+ }, false);
Matt Perry 2013/03/15 17:51:07 setIcon calls sendRequest behind the scenes... Con
});
exports.binding = binding.generate();

Powered by Google App Engine
This is Rietveld 408576698