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

Unified Diff: chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js

Issue 2451553008: [MD settings] move cookie tree management to cookie tree behavior (Closed)
Patch Set: review changes Created 4 years, 2 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
« no previous file with comments | « chrome/browser/resources/settings/site_settings/site_data_details_dialog.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
diff --git a/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js b/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
index 10e158411c77f2602376f05bb9c1e1f27600981c..e25039d32518d1034a8f99005fbccbbe02e7f67e 100644
--- a/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
+++ b/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
@@ -157,7 +157,7 @@ cr.define('settings', function() {
/**
* Reloads all cookies.
- * @return {!Promise<Array<CookieDataSummaryItem>>} Returns the full cookie
+ * @return {!Promise<!CookieList>} Returns the full cookie
* list.
*/
reloadCookies: function() {},
@@ -165,7 +165,7 @@ cr.define('settings', function() {
/**
* Fetches all children of a given cookie.
* @param {string} path The path to the parent cookie.
- * @return {!Promise<Array<CookieDataSummaryItem>>} Returns a cookie list
+ * @return {!Promise<!Array<!CookieDataSummaryItem>>} Returns a cookie list
* for the given path.
*/
loadCookieChildren: function(path) {},
@@ -178,7 +178,7 @@ cr.define('settings', function() {
/**
* Removes all cookies.
- * @return {!Promise<Array<CookieDataSummaryItem>>} Returns the up to date
+ * @return {!Promise<!CookieList>} Returns the up to date
* cookie list once deletion is complete (empty list).
*/
removeAllCookies: function() {},
@@ -212,7 +212,7 @@ cr.define('settings', function() {
/**
* Fetches a list of all USB devices and the sites permitted to use them.
- * @return {!Promise<Array<UsbDeviceEntry>>} The list of USB devices.
+ * @return {!Promise<!Array<!UsbDeviceEntry>>} The list of USB devices.
*/
fetchUsbDevices: function() {},
« no previous file with comments | « chrome/browser/resources/settings/site_settings/site_data_details_dialog.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698