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

Side by Side Diff: extensions/renderer/resources/web_request_custom_bindings.js

Issue 1417513003: [Extensions] Don't allow built-in extensions code to be overridden (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Jochen's Created 5 years, 1 month 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
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 binding for the webRequest API. 5 // Custom binding for the webRequest API.
6 6
7 var binding = require('binding').Binding.create('webRequest'); 7 var binding = require('binding').Binding.create('webRequest');
8 var sendRequest = require('sendRequest').sendRequest; 8 var sendRequest = require('sendRequest').sendRequest;
9 var WebRequestEvent = require('webRequestInternal').WebRequestEvent; 9 var WebRequestEvent = require('webRequestInternal').WebRequestEvent;
10 10
11 binding.registerCustomHook(function(api) { 11 binding.registerCustomHook(function(api) {
12 var apiFunctions = api.apiFunctions; 12 var apiFunctions = api.apiFunctions;
13 13
14 apiFunctions.setHandleRequest('handlerBehaviorChanged', function() { 14 apiFunctions.setHandleRequest('handlerBehaviorChanged', function() {
15 var args = $Array.slice(arguments); 15 var args = $Array.slice(arguments);
16 sendRequest(this.name, args, this.definition.parameters, 16 sendRequest(this.name, args, this.definition.parameters,
17 {forIOThread: true}); 17 {forIOThread: true});
18 }); 18 });
19 }); 19 });
20 20
21 binding.registerCustomEvent(WebRequestEvent); 21 binding.registerCustomEvent(WebRequestEvent);
22 22
23 exports.binding = binding.generate(); 23 exports.$set('binding', binding.generate());
OLDNEW
« no previous file with comments | « extensions/renderer/resources/utils.js ('k') | extensions/renderer/resources/web_request_internal_custom_bindings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698