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

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

Issue 307833002: Move some extensions renderer resources to extensions_renderer_resources.grd. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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 binding for the contextMenus API. 5 // Custom binding for the contextMenus API.
6 6
7 var binding = require('binding').Binding.create('contextMenus'); 7 var binding = require('binding').Binding.create('contextMenus');
8 8
9 var contextMenuNatives = requireNative('context_menus'); 9 var contextMenuNatives = requireNative('context_menus');
10 var sendRequest = require('sendRequest').sendRequest; 10 var sendRequest = require('sendRequest').sendRequest;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 function(name, request, response) { 92 function(name, request, response) {
93 if (chrome.runtime.lastError) { 93 if (chrome.runtime.lastError) {
94 return; 94 return;
95 } 95 }
96 contextMenus.generatedIdHandlers = {}; 96 contextMenus.generatedIdHandlers = {};
97 contextMenus.stringIdHandlers = {}; 97 contextMenus.stringIdHandlers = {};
98 }); 98 });
99 }); 99 });
100 100
101 exports.binding = binding.generate(); 101 exports.binding = binding.generate();
OLDNEW
« no previous file with comments | « extensions/renderer/resources/binding.js ('k') | extensions/renderer/resources/entry_id_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698