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

Unified Diff: chrome/browser/resources/print_preview/settings/advanced_options_settings.js

Issue 2617663002: WIP: run clang-format-js on lots of things (Closed)
Patch Set: merge Created 3 years, 11 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/print_preview/settings/advanced_options_settings.js
diff --git a/chrome/browser/resources/print_preview/settings/advanced_options_settings.js b/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
index e1284a749008675c20693907fa04844d0a27577e..5add58ad195b18afcb1273aa743149aaa95bc0e9 100644
--- a/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
+++ b/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
@@ -60,19 +60,17 @@ cr.define('print_preview', function() {
enterDocument: function() {
print_preview.SettingsSection.prototype.enterDocument.call(this);
- this.tracker.add(
- this.getButton_(), 'click', function() {
- cr.dispatchSimpleEvent(
- this, AdvancedOptionsSettings.EventType.BUTTON_ACTIVATED);
- }.bind(this));
+ this.tracker.add(this.getButton_(), 'click', function() {
+ cr.dispatchSimpleEvent(
+ this, AdvancedOptionsSettings.EventType.BUTTON_ACTIVATED);
+ }.bind(this));
this.tracker.add(
this.destinationStore_,
print_preview.DestinationStore.EventType.DESTINATION_SELECT,
this.onDestinationChanged_.bind(this));
this.tracker.add(
- this.destinationStore_,
- print_preview.DestinationStore.EventType.
- SELECTED_DESTINATION_CAPABILITIES_READY,
+ this.destinationStore_, print_preview.DestinationStore.EventType
+ .SELECTED_DESTINATION_CAPABILITIES_READY,
this.onDestinationChanged_.bind(this));
},
@@ -94,7 +92,5 @@ cr.define('print_preview', function() {
};
// Export
- return {
- AdvancedOptionsSettings: AdvancedOptionsSettings
- };
+ return {AdvancedOptionsSettings: AdvancedOptionsSettings};
});

Powered by Google App Engine
This is Rietveld 408576698