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

Side by Side Diff: extensions/renderer/resources/web_request_internal_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 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'hasListener', 181 'hasListener',
182 'hasListeners', 182 'hasListeners',
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.$set('binding', webRequestInternal);
192 exports.WebRequestEvent = WebRequestEvent; 192 exports.$set('WebRequestEvent', WebRequestEvent);
OLDNEW
« no previous file with comments | « extensions/renderer/resources/web_request_custom_bindings.js ('k') | extensions/renderer/utils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698