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

Side by Side Diff: chrome/renderer/resources/extensions/i18n_custom_bindings.js

Issue 11571014: Lazy load chrome.* APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments Created 7 years, 10 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 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();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698