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 bindings for the i18n API. | 5 // Custom binding for the i18n API. |
| 6 |
| 7 var binding = require('binding').Binding.create('i18n'); |
6 | 8 |
7 var i18nNatives = requireNative('i18n'); | 9 var i18nNatives = requireNative('i18n'); |
8 var GetL10nMessage = i18nNatives.GetL10nMessage; | 10 var GetL10nMessage = i18nNatives.GetL10nMessage; |
9 | 11 |
10 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); | 12 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
11 | 13 |
12 chromeHidden.registerCustomHook('i18n', function(bindingsAPI, extensionId) { | 14 binding.registerCustomHook(function(bindingsAPI, extensionId) { |
13 var apiFunctions = bindingsAPI.apiFunctions; | 15 var apiFunctions = bindingsAPI.apiFunctions; |
14 | 16 |
15 apiFunctions.setUpdateArgumentsPreValidate('getMessage', function() { | 17 apiFunctions.setUpdateArgumentsPreValidate('getMessage', function() { |
16 var args = Array.prototype.slice.call(arguments); | 18 var args = Array.prototype.slice.call(arguments); |
17 | 19 |
18 // The first argument is the message, and should be a string. | 20 // The first argument is the message, and should be a string. |
19 var message = args[0]; | 21 var message = args[0]; |
20 if (typeof(message) !== 'string') { | 22 if (typeof(message) !== 'string') { |
21 console.warn(extensionId + ': the first argument to getMessage should ' + | 23 console.warn(extensionId + ': the first argument to getMessage should ' + |
22 'be type "string", was ' + message + | 24 'be type "string", was ' + message + |
23 ' (type "' + typeof(message) + '")'); | 25 ' (type "' + typeof(message) + '")'); |
24 args[0] = String(message); | 26 args[0] = String(message); |
25 } | 27 } |
26 | 28 |
27 return args; | 29 return args; |
28 }); | 30 }); |
29 | 31 |
30 apiFunctions.setHandleRequest('getMessage', | 32 apiFunctions.setHandleRequest('getMessage', |
31 function(messageName, substitutions) { | 33 function(messageName, substitutions) { |
32 return GetL10nMessage(messageName, substitutions, extensionId); | 34 return GetL10nMessage(messageName, substitutions, extensionId); |
33 }); | 35 }); |
34 }); | 36 }); |
| 37 |
| 38 exports.binding = binding.generate(); |
OLD | NEW |