| Index: chrome/browser/resources/settings/site_settings/protocol_handlers.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/protocol_handlers.js b/chrome/browser/resources/settings/site_settings/protocol_handlers.js
|
| index 2f37b295087b75151802abaf539d94804360a9ab..7182f9af49ff2804ed28fe44bd8ea2f32f6b3a2d 100644
|
| --- a/chrome/browser/resources/settings/site_settings/protocol_handlers.js
|
| +++ b/chrome/browser/resources/settings/site_settings/protocol_handlers.js
|
| @@ -8,6 +8,10 @@
|
| * protocol handlers category under Site Settings.
|
| */
|
|
|
| +/**
|
| + * All possible actions in the menu.
|
| + * @enum {string}
|
| + */
|
| var MenuActions = {
|
| SET_DEFAULT: 'SetDefault',
|
| REMOVE: 'Remove',
|
| @@ -69,7 +73,7 @@ Polymer({
|
|
|
| /**
|
| * Obtains the description for the main toggle.
|
| - * @param {number} categoryEnabled Whether the main toggle is enabled.
|
| + * @param {boolean} categoryEnabled Whether the main toggle is enabled.
|
| * @return {string} The description to use.
|
| * @private
|
| */
|
| @@ -128,6 +132,8 @@ Polymer({
|
|
|
| /**
|
| * A handler when an action is selected in the action menu.
|
| + * @param {!{model: !{item: ProtocolHandlerEntry},
|
| + * detail: !{selected: string}}} event
|
| * @private
|
| */
|
| onActionMenuIronActivate_: function(event) {
|
|
|