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

Unified Diff: chrome/browser/resources/options/content_settings_ui.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: 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/options/content_settings_ui.js
diff --git a/chrome/browser/resources/options/content_settings_ui.js b/chrome/browser/resources/options/content_settings_ui.js
index 995b52aa24000ab6be0f5d1b75e62ba855e189c8..a025219f900f4b26d3c066cece54be478baa4a6c 100644
--- a/chrome/browser/resources/options/content_settings_ui.js
+++ b/chrome/browser/resources/options/content_settings_ui.js
@@ -20,10 +20,9 @@ cr.define('options', function() {
this.type = 'radio';
var self = this;
- this.addEventListener('change',
- function(e) {
- chrome.send('setContentFilter', [this.name, this.value]);
- });
+ this.addEventListener('change', function(e) {
+ chrome.send('setContentFilter', [this.name, this.value]);
+ });
},
};
@@ -49,10 +48,9 @@ cr.define('options', function() {
this.type = 'radio';
var self = this;
- this.addEventListener('change',
- function(e) {
- chrome.send('setHandlersEnabled', [this.value == 'allow']);
- });
+ this.addEventListener('change', function(e) {
+ chrome.send('setHandlersEnabled', [this.value == 'allow']);
+ });
},
};
@@ -63,4 +61,3 @@ cr.define('options', function() {
};
});
-

Powered by Google App Engine
This is Rietveld 408576698