| Index: chrome/browser/resources/print_preview/data/ticket_items/custom_margins.js
|
| diff --git a/chrome/browser/resources/print_preview/data/ticket_items/custom_margins.js b/chrome/browser/resources/print_preview/data/ticket_items/custom_margins.js
|
| index b5b836b8997080554202cd0d21c19518672e2cb7..7a22d28794907b4b46c42ab18c610970f782b0df 100644
|
| --- a/chrome/browser/resources/print_preview/data/ticket_items/custom_margins.js
|
| +++ b/chrome/browser/resources/print_preview/data/ticket_items/custom_margins.js
|
| @@ -25,19 +25,9 @@ cr.define('print_preview.ticket_items', function() {
|
| };
|
|
|
| /**
|
| - * Enumeration of the orientations of margins.
|
| - * @enum {string}
|
| - */
|
| - CustomMargins.Orientation = {
|
| - TOP: 'top',
|
| - RIGHT: 'right',
|
| - BOTTOM: 'bottom',
|
| - LEFT: 'left'
|
| - };
|
| -
|
| - /**
|
| * Mapping of a margin orientation to its opposite.
|
| - * @type {!Object.<!CustomMargins.Orientation, !CustomMargins.Orientation>}
|
| + * @type {!Object.<!print_preview.ticket_items.CustomMargins.Orientation,
|
| + * !print_preview.ticket_items.CustomMargins.Orientation>}
|
| * @private
|
| */
|
| CustomMargins.OppositeOrientation_ = {};
|
| @@ -165,3 +155,14 @@ cr.define('print_preview.ticket_items', function() {
|
| CustomMargins: CustomMargins
|
| };
|
| });
|
| +
|
| +/**
|
| + * Enumeration of the orientations of margins.
|
| + * @enum {string}
|
| + */
|
| +print_preview.ticket_items.CustomMargins.Orientation = {
|
| + TOP: 'top',
|
| + RIGHT: 'right',
|
| + BOTTOM: 'bottom',
|
| + LEFT: 'left'
|
| +};
|
|
|