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

Unified Diff: chrome/browser/resources/print_preview/search/cloud_destination_list.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/search/cloud_destination_list.js
diff --git a/chrome/browser/resources/print_preview/search/cloud_destination_list.js b/chrome/browser/resources/print_preview/search/cloud_destination_list.js
index 1b8d2aae693d243b52098fda3ccb6e28c2f2b37f..7f0bcdd353d15582f4b182e42078f48a0e6db306 100644
--- a/chrome/browser/resources/print_preview/search/cloud_destination_list.js
+++ b/chrome/browser/resources/print_preview/search/cloud_destination_list.js
@@ -14,9 +14,7 @@ cr.define('print_preview', function() {
*/
function CloudDestinationList(eventTarget) {
print_preview.DestinationList.call(
- this,
- eventTarget,
- loadTimeData.getString('cloudDestinationsTitle'),
+ this, eventTarget, loadTimeData.getString('cloudDestinationsTitle'),
loadTimeData.getString('manage'));
}
@@ -30,13 +28,12 @@ cr.define('print_preview', function() {
var docsId = print_preview.Destination.GooglePromotedId.DOCS;
this.setActionLinkTextInternal(loadTimeData.getString(
destinations.length == 1 && destinations[0].id == docsId ?
- 'setupCloudPrinters' : 'manage'));
+ 'setupCloudPrinters' :
+ 'manage'));
print_preview.DestinationList.prototype.updateDestinations.call(
this, destinations);
}
};
- return {
- CloudDestinationList: CloudDestinationList
- };
+ return {CloudDestinationList: CloudDestinationList};
});

Powered by Google App Engine
This is Rietveld 408576698