Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: chrome/renderer/resources/extensions/declarative_webrequest_custom_bindings.js

Issue 10392008: Move declarative API into events API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 8
9 chromeHidden.registerCustomHook('declarativeWebRequest', function(api) { 9 chromeHidden.registerCustomHook('declarativeWebRequest', function(api) {
10 // Returns the schema definition of type |typeId| defined in |namespace|. 10 // Returns the schema definition of type |typeId| defined in |namespace|.
11 function getSchema(namespace, typeId) { 11 function getSchema(namespace, typeId) {
12 var filterNamespace = function(val) {return val.namespace === namespace;}; 12 var apiSchema = chromeHidden.lookup(api.apiDefinitions,
13 var apiSchema = api.apiDefinitions.filter(filterNamespace)[0]; 13 'namespace', namespace);
not at google - send to devlin 2012/05/10 09:01:25 nit: arguments should line up, but this could be
battre 2012/05/10 16:40:29 Done.
14 var filterTypeId = function (val) {return val.id === typeId;}; 14 var resultSchema = chromeHidden.lookup(apiSchema.types, 'id', typeId);
15 var resultSchema = apiSchema.types.filter(filterTypeId)[0];
16 return resultSchema; 15 return resultSchema;
17 } 16 }
18 17
19 // Helper function for the constructor of concrete datatypes of the 18 // Helper function for the constructor of concrete datatypes of the
20 // declarative webRequest API. 19 // declarative webRequest API.
21 // Makes sure that |this| contains the union of parameters and 20 // Makes sure that |this| contains the union of parameters and
22 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the 21 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the
23 // generated union dictionary against the schema for |typeId|. 22 // generated union dictionary against the schema for |typeId|.
24 function setupInstance(instance, parameters, typeId) { 23 function setupInstance(instance, parameters, typeId) {
25 for (var key in parameters) { 24 for (var key in parameters) {
(...skipping 10 matching lines...) Expand all
36 chrome.declarativeWebRequest.RequestMatcher = function(parameters) { 35 chrome.declarativeWebRequest.RequestMatcher = function(parameters) {
37 setupInstance(this, parameters, 'RequestMatcher'); 36 setupInstance(this, parameters, 'RequestMatcher');
38 }; 37 };
39 chrome.declarativeWebRequest.CancelRequest = function(parameters) { 38 chrome.declarativeWebRequest.CancelRequest = function(parameters) {
40 setupInstance(this, parameters, 'CancelRequest'); 39 setupInstance(this, parameters, 'CancelRequest');
41 }; 40 };
42 chrome.declarativeWebRequest.RedirectRequest = function(parameters) { 41 chrome.declarativeWebRequest.RedirectRequest = function(parameters) {
43 setupInstance(this, parameters, 'RedirectRequest'); 42 setupInstance(this, parameters, 'RedirectRequest');
44 }; 43 };
45 }); 44 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698