| 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 bindings for the declarativeWebRequest API. | 5 // Custom bindings for the declarativeWebRequest API. |
| 6 | 6 |
| 7 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); | 7 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
| 8 var utils = require('utils'); | |
| 9 | 8 |
| 10 chromeHidden.registerCustomHook('declarativeWebRequest', function(api) { | 9 chromeHidden.registerCustomHook('declarativeWebRequest', function(api) { |
| 11 // Returns the schema definition of type |typeId| defined in |namespace|. | 10 // Returns the schema definition of type |typeId| defined in |namespace|. |
| 12 function getSchema(namespace, typeId) { | 11 function getSchema(namespace, typeId) { |
| 13 var apiSchema = utils.lookup(api.apiDefinitions, 'namespace', namespace); | 12 var filterNamespace = function(val) {return val.namespace === namespace;}; |
| 14 var resultSchema = utils.lookup( | 13 var apiSchema = api.apiDefinitions.filter(filterNamespace)[0]; |
| 15 apiSchema.types, 'id', namespace + '.' + typeId); | 14 var filterTypeId = function (val) { |
| 15 return val.id === namespace + "." + typeId; |
| 16 }; |
| 17 var resultSchema = apiSchema.types.filter(filterTypeId)[0]; |
| 16 return resultSchema; | 18 return resultSchema; |
| 17 } | 19 } |
| 18 | 20 |
| 19 // Helper function for the constructor of concrete datatypes of the | 21 // Helper function for the constructor of concrete datatypes of the |
| 20 // declarative webRequest API. | 22 // declarative webRequest API. |
| 21 // Makes sure that |this| contains the union of parameters and | 23 // Makes sure that |this| contains the union of parameters and |
| 22 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the | 24 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the |
| 23 // generated union dictionary against the schema for |typeId|. | 25 // generated union dictionary against the schema for |typeId|. |
| 24 function setupInstance(instance, parameters, typeId) { | 26 function setupInstance(instance, parameters, typeId) { |
| 25 for (var key in parameters) { | 27 for (var key in parameters) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 36 chrome.declarativeWebRequest.RequestMatcher = function(parameters) { | 38 chrome.declarativeWebRequest.RequestMatcher = function(parameters) { |
| 37 setupInstance(this, parameters, 'RequestMatcher'); | 39 setupInstance(this, parameters, 'RequestMatcher'); |
| 38 }; | 40 }; |
| 39 chrome.declarativeWebRequest.CancelRequest = function(parameters) { | 41 chrome.declarativeWebRequest.CancelRequest = function(parameters) { |
| 40 setupInstance(this, parameters, 'CancelRequest'); | 42 setupInstance(this, parameters, 'CancelRequest'); |
| 41 }; | 43 }; |
| 42 chrome.declarativeWebRequest.RedirectRequest = function(parameters) { | 44 chrome.declarativeWebRequest.RedirectRequest = function(parameters) { |
| 43 setupInstance(this, parameters, 'RedirectRequest'); | 45 setupInstance(this, parameters, 'RedirectRequest'); |
| 44 }; | 46 }; |
| 45 }); | 47 }); |
| OLD | NEW |