| 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};
|
| });
|
|
|