| Index: chrome/browser/resources/options/password_manager_list.js
|
| diff --git a/chrome/browser/resources/options/passwords_exceptions_list.js b/chrome/browser/resources/options/password_manager_list.js
|
| similarity index 96%
|
| rename from chrome/browser/resources/options/passwords_exceptions_list.js
|
| rename to chrome/browser/resources/options/password_manager_list.js
|
| index 21219766ce0b4a79fd1ede2c437af4cec20e1d8b..c814fe5b133a30f53d866532531668e520582f4f 100644
|
| --- a/chrome/browser/resources/options/passwords_exceptions_list.js
|
| +++ b/chrome/browser/resources/options/password_manager_list.js
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -cr.define('options.passwordsExceptions', function() {
|
| +cr.define('options.passwordManager', function() {
|
|
|
| const List = cr.ui.List;
|
| const ListItem = cr.ui.ListItem;
|
| @@ -160,12 +160,12 @@ cr.define('options.passwordsExceptions', function() {
|
| */
|
| removeSelectedRow: function() {
|
| var selectedIndex = this.selectionModel.selectedIndex;
|
| - PasswordsExceptions.removeSavedPassword(selectedIndex);
|
| + PasswordManager.removeSavedPassword(selectedIndex);
|
| },
|
|
|
| showSelectedPassword: function() {
|
| var selectedIndex = this.selectionModel.selectedIndex;
|
| - PasswordsExceptions.showSelectedPassword(selectedIndex);
|
| + PasswordManager.showSelectedPassword(selectedIndex);
|
| },
|
|
|
| /**
|
| @@ -224,7 +224,7 @@ cr.define('options.passwordsExceptions', function() {
|
| */
|
| removeSelectedRow: function() {
|
| var selectedIndex = this.selectionModel.selectedIndex;
|
| - PasswordsExceptions.removePasswordException(selectedIndex);
|
| + PasswordManager.removePasswordException(selectedIndex);
|
| },
|
|
|
| /**
|
| @@ -284,7 +284,7 @@ cr.define('options.passwordsExceptions', function() {
|
| localStrings.getString('passwordsRemoveAllWarning'),
|
| localStrings.getString('yesButtonLabel'),
|
| localStrings.getString('noButtonLabel'),
|
| - function() { PasswordsExceptions.removeAllPasswords(); });
|
| + function() { PasswordManager.removeAllPasswords(); });
|
| };
|
|
|
| showHidePassword.onclick = function(event) {
|
| @@ -362,7 +362,7 @@ cr.define('options.passwordsExceptions', function() {
|
| };
|
|
|
| removeAll.onclick = function(event) {
|
| - PasswordsExceptions.removeAllPasswordExceptions();
|
| + PasswordManager.removeAllPasswordExceptions();
|
| };
|
|
|
| this.updateButtonSensitivity();
|
|
|