Commit 2aeb43f9 authored by lazyboy@chromium.org's avatar lazyboy@chromium.org

Fix a typo in webview_custom_bindings.js

BUG=140315
Test=None, this bindings is not exposed yet.

Review URL: https://codereview.chromium.org/189923003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255840 0039d316-1c4b-4281-b951-d872f2087c98
parent 5cce3d08
...@@ -99,7 +99,8 @@ binding.registerCustomHook(function(bindingsAPI) { ...@@ -99,7 +99,8 @@ binding.registerCustomHook(function(bindingsAPI) {
var instanceId = request.args[0]; var instanceId = request.args[0];
var id = request.args[1]; var id = request.args[1];
if (request.args[2].onclick) { if (request.args[2].onclick) {
contextMenus.handlersForId(instanceId, id)[id] = request.args[2].onclick; webviewContextMenus.handlersForId(instanceId, id)[id] =
request.args[2].onclick;
} }
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment