Chromium Code Reviews| 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.
|
| } |
| } |