| 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 i18n API. | 5 // Custom binding for the i18n API. |
| 6 | 6 |
| 7 var binding = require('binding').Binding.create('i18n'); | 7 var binding = require('binding').Binding.create('i18n'); |
| 8 | 8 |
| 9 var i18nNatives = requireNative('i18n'); | 9 var i18nNatives = requireNative('i18n'); |
| 10 var GetL10nMessage = i18nNatives.GetL10nMessage; | 10 var GetL10nMessage = i18nNatives.GetL10nMessage; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ' (type "' + typeof(message) + '")'); | 25 ' (type "' + typeof(message) + '")'); |
| 26 args[0] = String(message); | 26 args[0] = String(message); |
| 27 } | 27 } |
| 28 | 28 |
| 29 return args; | 29 return args; |
| 30 }); | 30 }); |
| 31 | 31 |
| 32 apiFunctions.setHandleRequest('getMessage', | 32 apiFunctions.setHandleRequest('getMessage', |
| 33 function(messageName, substitutions) { | 33 function(messageName, substitutions) { |
| 34 return GetL10nMessage(messageName, substitutions, extensionId); | 34 return GetL10nMessage(messageName, substitutions, extensionId); |
| 35 }); | 35 }, false); |
| 36 }); | 36 }); |
| 37 | 37 |
| 38 exports.binding = binding.generate(); | 38 exports.binding = binding.generate(); |
| OLD | NEW |