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

Unified Diff: chrome/browser/resources/print_preview/settings/advanced_options_settings.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/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 62e735b1b97e8cc96387e195e775a3de8e233fca..2469dbe006e0fff6a3b8a19dfb113ac25ebe021b 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,18 @@ 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,
+ print_preview.DestinationStore.EventType
+ .SELECTED_DESTINATION_CAPABILITIES_READY,
this.onDestinationChanged_.bind(this));
},
@@ -94,7 +93,5 @@ cr.define('print_preview', function() {
};
// Export
- return {
- AdvancedOptionsSettings: AdvancedOptionsSettings
- };
+ return {AdvancedOptionsSettings: AdvancedOptionsSettings};
});

Powered by Google App Engine
This is Rietveld 408576698