| Index: chrome/browser/resources/options2/password_manager.js
 | 
| diff --git a/chrome/browser/resources/options2/password_manager.js b/chrome/browser/resources/options2/password_manager.js
 | 
| index b69dc8db03ddd74273fa08765892be1ef6a22bd9..a9e3e41f2d58340e150288646cb174411501d852 100644
 | 
| --- a/chrome/browser/resources/options2/password_manager.js
 | 
| +++ b/chrome/browser/resources/options2/password_manager.js
 | 
| @@ -181,32 +181,30 @@ cr.define('options', function() {
 | 
|    };
 | 
|  
 | 
|    /**
 | 
| -   * Call to remove a saved password.
 | 
| -   * @param rowIndex indicating the row to remove.
 | 
| +   * Removes a saved password.
 | 
| +   * @param {number} rowIndex indicating the row to remove.
 | 
|     */
 | 
|    PasswordManager.removeSavedPassword = function(rowIndex) {
 | 
|        chrome.send('removeSavedPassword', [String(rowIndex)]);
 | 
|    };
 | 
|  
 | 
|    /**
 | 
| -   * Call to remove a password exception.
 | 
| -   * @param rowIndex indicating the row to remove.
 | 
| +   * Removes a password exception.
 | 
| +   * @param {number} rowIndex indicating the row to remove.
 | 
|     */
 | 
|    PasswordManager.removePasswordException = function(rowIndex) {
 | 
|        chrome.send('removePasswordException', [String(rowIndex)]);
 | 
|    };
 | 
|  
 | 
|    /**
 | 
| -   * Call to remove all saved passwords.
 | 
| -   * @param tab contentType of the tab currently on.
 | 
| +   * Removes all saved passwords.
 | 
|     */
 | 
|    PasswordManager.removeAllPasswords = function() {
 | 
|      chrome.send('removeAllSavedPasswords');
 | 
|    };
 | 
|  
 | 
|    /**
 | 
| -   * Call to remove all saved passwords.
 | 
| -   * @param tab contentType of the tab currently on.
 | 
| +   * Removes all password exceptions.
 | 
|     */
 | 
|    PasswordManager.removeAllPasswordExceptions = function() {
 | 
|      chrome.send('removeAllPasswordExceptions');
 | 
| 
 |