| 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() {
|
| };
|
|
|
| });
|
| -
|
|
|