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

Unified Diff: chrome/browser/resources/print_preview/data/document_info.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/data/document_info.js
diff --git a/chrome/browser/resources/print_preview/data/document_info.js b/chrome/browser/resources/print_preview/data/document_info.js
index 990ac21263e03b467311f96813546dd81cb0bd88..2e286f35ead7863b919243e5b520777dfcc86077 100644
--- a/chrome/browser/resources/print_preview/data/document_info.js
+++ b/chrome/browser/resources/print_preview/data/document_info.js
@@ -59,7 +59,7 @@ cr.define('print_preview', function() {
// page-related information won't be set until preview generation occurs,
// so we'll use some defaults until then. This way, the print ticket store
// will be valid even if no preview can be generated.
- var initialPageSize = new print_preview.Size(612, 792); // 8.5"x11"
+ var initialPageSize = new print_preview.Size(612, 792); // 8.5"x11"
/**
* Size of the pages of the document in points.
@@ -95,9 +95,7 @@ cr.define('print_preview', function() {
* Event types dispatched by this data model.
* @enum {string}
*/
- DocumentInfo.EventType = {
- CHANGE: 'print_preview.DocumentInfo.CHANGE'
- };
+ DocumentInfo.EventType = {CHANGE: 'print_preview.DocumentInfo.CHANGE'};
DocumentInfo.prototype = {
__proto__: cr.EventTarget.prototype,
@@ -223,7 +221,5 @@ cr.define('print_preview', function() {
};
// Export
- return {
- DocumentInfo: DocumentInfo
- };
+ return {DocumentInfo: DocumentInfo};
});

Powered by Google App Engine
This is Rietveld 408576698