Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Unified Diff: chrome/browser/resources/options/password_manager.js

Issue 543493002: Compile chrome://settings, part 2: reduce from 950 to 400 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@F_settings
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698