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

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

Issue 1880063002: Fix Closure errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/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) {

Powered by Google App Engine
This is Rietveld 408576698