| Index: remoting/webapp/app_remoting/js/keyboard_layouts_menu.js
|
| diff --git a/remoting/webapp/app_remoting/js/keyboard_layouts_menu.js b/remoting/webapp/app_remoting/js/keyboard_layouts_menu.js
|
| index 3c82cdba82b9146284e1760ed7be63435de295d4..cb24296906098a6822a1364c368a83b4092830ce 100644
|
| --- a/remoting/webapp/app_remoting/js/keyboard_layouts_menu.js
|
| +++ b/remoting/webapp/app_remoting/js/keyboard_layouts_menu.js
|
| @@ -19,23 +19,14 @@ var remoting = remoting || {};
|
| * @constructor
|
| */
|
| remoting.KeyboardLayoutsMenu = function(adapter) {
|
| - /**
|
| - * @type {remoting.ContextMenuAdapter}
|
| - * @private
|
| - */
|
| + /** @private {remoting.ContextMenuAdapter} */
|
| this.adapter_ = adapter;
|
| - /**
|
| - * @type {remoting.SubmenuManager}
|
| - * @private
|
| - */
|
| + /** @private {remoting.SubmenuManager} */
|
| this.submenuManager_ = new remoting.SubmenuManager(
|
| adapter,
|
| chrome.i18n.getMessage(/*i18n-content*/'KEYBOARD_LAYOUTS_SUBMENU_TITLE'),
|
| true);
|
| - /**
|
| - * @type {string}
|
| - * @private
|
| - */
|
| + /** @private {string} */
|
| this.currentLayout_ = '';
|
|
|
| adapter.addListener(this.onContextMenu_.bind(this));
|
|
|