Index: chrome/browser/resources/settings/prefs/prefs.js |
diff --git a/chrome/browser/resources/settings/prefs/prefs.js b/chrome/browser/resources/settings/prefs/prefs.js |
index b68ccea3c5c9b26ee7608800145cf458189e34af..29d20c6015f51cf5db820096726c41e5c41b445a 100644 |
--- a/chrome/browser/resources/settings/prefs/prefs.js |
+++ b/chrome/browser/resources/settings/prefs/prefs.js |
@@ -44,7 +44,8 @@ |
/** |
* Called when prefs in the underlying Chrome pref store are changed. |
- * @param {!Array<!PrefObject>} prefs The prefs that changed. |
+ * @param {!Array<!chrome.settingsPrivate.PrefObject>} prefs The prefs that |
+ * changed. |
* @private |
*/ |
onPrefsChanged_: function(prefs) { |
@@ -53,7 +54,7 @@ |
/** |
* Called when prefs are fetched from settingsPrivate. |
- * @param {!Array<!PrefObject>} prefs |
+ * @param {!Array<!chrome.settingsPrivate.PrefObject>} prefs |
* @private |
*/ |
onPrefsFetched_: function(prefs) { |
@@ -66,7 +67,7 @@ |
/** |
* Updates the settings model with the given prefs. |
- * @param {!Array<!PrefObject>} prefs |
+ * @param {!Array<!chrome.settingsPrivate.PrefObject>} prefs |
* @param {boolean} shouldObserve Whether each of the prefs should be |
* observed. |
* @private |