Index: chrome/browser/resources/options/password_manager.js |
diff --git a/chrome/browser/resources/options/password_manager.js b/chrome/browser/resources/options/password_manager.js |
index 4758254538cf243d93e99601941836210b30514d..d535e2a3e2177ccb786e57468f228dd86fd872e3 100644 |
--- a/chrome/browser/resources/options/password_manager.js |
+++ b/chrome/browser/resources/options/password_manager.js |
@@ -13,6 +13,7 @@ cr.define('options', function() { |
/** |
* Encapsulated handling of password and exceptions page. |
* @constructor |
+ * @extends {cr.ui.pageManager.Page} |
*/ |
function PasswordManager() { |
this.activeNavTab = null; |
@@ -28,14 +29,14 @@ cr.define('options', function() { |
/** |
* The saved passwords list. |
- * @type {DeletableItemList} |
+ * @type {options.DeletableItemList} |
* @private |
*/ |
savedPasswordsList_: null, |
/** |
* The password exceptions list. |
- * @type {DeletableItemList} |
+ * @type {options.DeletableItemList} |
* @private |
*/ |
passwordExceptionsList_: null, |
@@ -138,7 +139,7 @@ cr.define('options', function() { |
/** |
* Updates the visibility of the list and empty list placeholder. |
- * @param {!List} list The list to toggle visilibility for. |
+ * @param {!cu.ui.List} list The list to toggle visilibility for. |
Dan Beam
2014/09/06 02:22:38
uh oh
Vitaly Pavlenko
2014/09/06 22:54:09
Done.
|
*/ |
updateListVisibility_: function(list) { |
var empty = list.dataModel.length == 0; |