Index: chrome/browser/resources/options/chromeos/proxy_rules_list.js |
diff --git a/chrome/browser/resources/options/chromeos/proxy_rules_list.js b/chrome/browser/resources/options/chromeos/proxy_rules_list.js |
index 8c86ffc4e2de457690d9444c2b9780dada3a80c7..69863d24de5803f23d7b6efa25b5e4e5e6c7e343 100644 |
--- a/chrome/browser/resources/options/chromeos/proxy_rules_list.js |
+++ b/chrome/browser/resources/options/chromeos/proxy_rules_list.js |
@@ -33,10 +33,9 @@ cr.define('options.proxyexceptions', function() { |
var self = this; |
// Listens to pref changes. |
- Preferences.getInstance().addEventListener(this.pref, |
- function(event) { |
- self.load_(event.value.value); |
- }); |
+ Preferences.getInstance().addEventListener(this.pref, function(event) { |
+ self.load_(event.value.value); |
+ }); |
}, |
/** |
@@ -138,7 +137,5 @@ cr.define('options.proxyexceptions', function() { |
} |
}; |
- return { |
- ProxyExceptions: ProxyExceptions |
- }; |
+ return {ProxyExceptions: ProxyExceptions}; |
}); |