| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Custom binding for the webRequestInternal API. | 5 // Custom binding for the webRequestInternal API. |
| 6 | 6 |
| 7 var binding = require('binding').Binding.create('webRequestInternal'); | 7 var binding = require('binding').Binding.create('webRequestInternal'); |
| 8 var eventBindings = require('event_bindings'); | 8 var eventBindings = require('event_bindings'); |
| 9 var sendRequest = require('sendRequest').sendRequest; | 9 var sendRequest = require('sendRequest').sendRequest; |
| 10 var validate = require('schemaUtils').validate; | 10 var validate = require('schemaUtils').validate; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 'addListener', | 183 'addListener', |
| 184 'removeListener', | 184 'removeListener', |
| 185 'addRules', | 185 'addRules', |
| 186 'removeRules', | 186 'removeRules', |
| 187 'getRules' | 187 'getRules' |
| 188 ] }); | 188 ] }); |
| 189 | 189 |
| 190 webRequestInternal = binding.generate(); | 190 webRequestInternal = binding.generate(); |
| 191 exports.binding = webRequestInternal; | 191 exports.binding = webRequestInternal; |
| 192 exports.WebRequestEvent = WebRequestEvent; | 192 exports.WebRequestEvent = WebRequestEvent; |
| OLD | NEW |