| Index: chrome/browser/resources/settings/site_settings/site_list.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/site_list.js b/chrome/browser/resources/settings/site_settings/site_list.js
|
| index 571c6e7c2367e2ea53778bf96f95ec0c5234557b..bd1927827a07239fbdb7cc7825cd4403740e73c0 100644
|
| --- a/chrome/browser/resources/settings/site_settings/site_list.js
|
| +++ b/chrome/browser/resources/settings/site_settings/site_list.js
|
| @@ -270,7 +270,7 @@ Polymer({
|
| /**
|
| * Converts a string origin/pattern to a URL.
|
| * @param {string} originOrPattern The origin/pattern to convert to URL.
|
| - * @return {!URL} The URL to return (or null if origin is not a valid URL).
|
| + * @return {URL} The URL to return (or null if origin is not a valid URL).
|
| * @private
|
| */
|
| toUrl_: function(originOrPattern) {
|
| @@ -286,6 +286,7 @@ Polymer({
|
| * Converts an unordered site list to an ordered array, sorted by site name
|
| * then protocol and de-duped (by origin).
|
| * @param {!Array<SiteException>} sites A list of sites to sort and de-dup.
|
| + * @return {!Array<SiteException>} Sorted and de-duped list.
|
| * @private
|
| */
|
| toSiteArray_: function(sites) {
|
|
|