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

Unified Diff: chrome/browser/resources/settings/site_settings/site_details.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/site_details.js
diff --git a/chrome/browser/resources/settings/site_settings/site_details.js b/chrome/browser/resources/settings/site_settings/site_details.js
index d1022348f905d76d4e0990a72a44009775d96c2e..c75cfa7eb5ef01263f393ee2e09d2dd7fda4fc11 100644
--- a/chrome/browser/resources/settings/site_settings/site_details.js
+++ b/chrome/browser/resources/settings/site_settings/site_details.js
@@ -122,7 +122,9 @@ Polymer({
onClearAndReset_: function() {
Array.prototype.forEach.call(
this.root.querySelectorAll('site-details-permission'),
- function(element) { element.resetPermission(); });
+ function(element) {
+ element.resetPermission();
+ });
if (this.storedData_ != '')
this.onClearStorage_();
@@ -146,6 +148,8 @@ Polymer({
permissionShowing_: function() {
return Array.prototype.some.call(
this.root.querySelectorAll('site-details-permission'),
- function(element) { return element.offsetHeight > 0; });
+ function(element) {
+ return element.offsetHeight > 0;
+ });
},
});

Powered by Google App Engine
This is Rietveld 408576698