Roll src/third_party/WebKit 395ff9e:18c0088 (svn 192995:192997)
[chromium-blink-merge.git] / extensions / renderer / resources / web_request_custom_bindings.js
blob045fe963759ed8c22ae3d58a606cf4afb2c544a9
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,
17                 {forIOThread: true});
18   });
19 });
21 binding.registerCustomEvent(WebRequestEvent);
23 exports.binding = binding.generate();