OLD | NEW |
| (Empty) |
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. | |
4 | |
5 // Custom binding for the webRequest API. | |
6 | |
7 var binding = require('binding').Binding.create('webRequest'); | |
8 var sendRequest = require('sendRequest').sendRequest; | |
9 var WebRequestEvent = require('webRequestInternal').WebRequestEvent; | |
10 | |
11 binding.registerCustomHook(function(api) { | |
12 var apiFunctions = api.apiFunctions; | |
13 | |
14 apiFunctions.setHandleRequest('handlerBehaviorChanged', function() { | |
15 var args = $Array.slice(arguments); | |
16 sendRequest(this.name, args, this.definition.parameters, | |
17 {forIOThread: true}); | |
18 }); | |
19 }); | |
20 | |
21 binding.registerCustomEvent(WebRequestEvent); | |
22 | |
23 exports.binding = binding.generate(); | |
OLD | NEW |