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

Unified Diff: chrome/browser/resources/print_preview/data/document_info.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/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 589b0685a9ab3aff24c2aac7f3f54f52973a3bde..38d578d9bb37676c6d3238bcbc9944fa877c6b0b 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