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

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

Issue 2834433002: MD Settings: ESLint --fix output, WIP. (Closed)
Patch Set: Relax Created 3 years, 7 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/cookie_tree_node.js
diff --git a/chrome/browser/resources/settings/site_settings/cookie_tree_node.js b/chrome/browser/resources/settings/site_settings/cookie_tree_node.js
index 0b64778a458ea864a281fb99f4fa25f2233f6463..b840fdb43e9194a97ce1c9a10d79225e4acb624e 100644
--- a/chrome/browser/resources/settings/site_settings/cookie_tree_node.js
+++ b/chrome/browser/resources/settings/site_settings/cookie_tree_node.js
@@ -74,7 +74,7 @@ cr.define('settings', function() {
* @private {!Array<!settings.CookieTreeNode>}
*/
this.children_ = [];
- };
+ }
CookieTreeNode.prototype = {
/**
@@ -186,7 +186,7 @@ cr.define('settings', function() {
dataType, descriptionNode.data.totalUsage);
}
}
- list.push({ site: title, id: id, localData: description });
+ list.push({site: title, id: id, localData: description});
}
list.sort(function(a, b) {
return a.site.localeCompare(b.site);

Powered by Google App Engine
This is Rietveld 408576698