| 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 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  Loading... | 
| 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(); | 
| OLD | NEW | 
|---|