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

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

Issue 2834433002: MD Settings: ESLint --fix output, WIP. (Closed)
Patch Set: Created 3 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/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..6b26cff3660f35bfdaf14e9666aa3ce93dff3849 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 = {
/**
@@ -139,8 +139,8 @@ cr.define('settings', function() {
for (var j = 0; j < child.children_.length; j++) {
var cookie = child.children_[j];
list.push({title: cookie.data.title,
- id: cookie.data.id,
- data: cookie.data});
+ id: cookie.data.id,
+ data: cookie.data});
dschuyler 2017/04/19 18:58:41 four space indent
Dan Beam 2017/04/19 19:04:40 well, actually, array and object literals that are
dpapad 2017/04/19 19:19:55 Will tweak config again.
}
}

Powered by Google App Engine
This is Rietveld 408576698