| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 /** | 5 /** |
| 6 * @fileoverview 'passwords-section' is the collapsible section containing | 6 * @fileoverview 'passwords-section' is the collapsible section containing |
| 7 * the list of saved passwords as well as the list of sites that will never | 7 * the list of saved passwords as well as the list of sites that will never |
| 8 * save any passwords. | 8 * save any passwords. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 /** | 180 /** |
| 181 * An array of sites to display. | 181 * An array of sites to display. |
| 182 * @type {!Array<!PasswordManager.ExceptionEntry>} | 182 * @type {!Array<!PasswordManager.ExceptionEntry>} |
| 183 */ | 183 */ |
| 184 passwordExceptions: Array, | 184 passwordExceptions: Array, |
| 185 | 185 |
| 186 /** @override */ | 186 /** @override */ |
| 187 subpageRoute: { | 187 subpageRoute: { |
| 188 type: Object, | 188 type: Object, |
| 189 value: settings.Route.MANAGE_PASSWORDS, | 189 value: settings.routes.MANAGE_PASSWORDS, |
| 190 }, | 190 }, |
| 191 | 191 |
| 192 /** | 192 /** |
| 193 * The model for any password related action menus or dialogs. | 193 * The model for any password related action menus or dialogs. |
| 194 * @private {?chrome.passwordsPrivate.PasswordUiEntry} | 194 * @private {?chrome.passwordsPrivate.PasswordUiEntry} |
| 195 */ | 195 */ |
| 196 activePassword: Object, | 196 activePassword: Object, |
| 197 | 197 |
| 198 /** @private */ | 198 /** @private */ |
| 199 showPasswordEditDialog_: Boolean, | 199 showPasswordEditDialog_: Boolean, |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 /** | 394 /** |
| 395 * @private | 395 * @private |
| 396 * @param {boolean} toggleValue | 396 * @param {boolean} toggleValue |
| 397 * @return {string} | 397 * @return {string} |
| 398 */ | 398 */ |
| 399 getOnOffLabel_: function(toggleValue) { | 399 getOnOffLabel_: function(toggleValue) { |
| 400 return toggleValue ? this.i18n('toggleOn') : this.i18n('toggleOff'); | 400 return toggleValue ? this.i18n('toggleOn') : this.i18n('toggleOff'); |
| 401 } | 401 } |
| 402 }); | 402 }); |
| 403 })(); | 403 })(); |
| OLD | NEW |