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

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

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review Created 3 years, 6 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 030099b413d1348041ee16005ae75c6eb498df2d..809ee7f884f9fc8f2cfeef02626c886fcc86b320 100644
--- a/chrome/browser/resources/settings/site_settings/cookie_tree_node.js
+++ b/chrome/browser/resources/settings/site_settings/cookie_tree_node.js
@@ -109,7 +109,7 @@ cr.define('settings', function() {
}
if (this.populateChildNodes(
- parentId, startingNode.children_[i], newNodes)) {
+ parentId, startingNode.children_[i], newNodes)) {
return true;
}
}
@@ -138,9 +138,11 @@ cr.define('settings', function() {
var child = this.children_[i];
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});
+ list.push({
+ title: cookie.data.title,
+ id: cookie.data.id,
+ data: cookie.data
+ });
}
}
@@ -186,7 +188,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