Chromium Code Reviews| Index: chrome/browser/resources/extensions/extension_commands_overlay.js |
| diff --git a/chrome/browser/resources/extensions/extension_commands_overlay.js b/chrome/browser/resources/extensions/extension_commands_overlay.js |
| index 64f595656508977690ddcec4a9466d32bbdd0275..5c77b7c8f0272049d73ce787f4fbd68c334be97a 100644 |
| --- a/chrome/browser/resources/extensions/extension_commands_overlay.js |
| +++ b/chrome/browser/resources/extensions/extension_commands_overlay.js |
| @@ -51,6 +51,8 @@ cr.define('extensions', function() { |
| /** |
| * Called by the dom_ui_ to re-populate the page with data representing |
| * the current state of extension commands. |
| + * @param {{commands: Array.<{name: string, id: string, commands: ?Array}>}} |
|
Dan Beam
2014/08/21 18:27:47
nit: {!{
Vitaly Pavlenko
2014/08/22 01:43:40
Done.
|
| + * extensionsData |
| */ |
| ExtensionCommandsOverlay.returnExtensionsData = function(extensionsData) { |
| ExtensionCommandList.prototype.data_ = extensionsData; |
| @@ -68,7 +70,7 @@ cr.define('extensions', function() { |
| list.classList.add('empty-extension-commands-list'); |
| else |
| list.classList.remove('empty-extension-commands-list'); |
| - } |
| + }; |
| // Export |
| return { |