1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Custom binding for the webRequest API.
7 var binding = require('binding').Binding.create('webRequest');
8 var sendRequest = require('sendRequest').sendRequest;
9 var WebRequestEvent = require('webRequestInternal').WebRequestEvent;
11 binding.registerCustomHook(function(api) {
12 var apiFunctions = api.apiFunctions;
14 apiFunctions.setHandleRequest('handlerBehaviorChanged', function() {
15 var args = $Array.slice(arguments);
16 sendRequest(this.name, args, this.definition.parameters,
21 binding.registerCustomEvent(WebRequestEvent);
23 exports.binding = binding.generate();