| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PRINTING_PRINT_JOB_CONSTANTS_H_ | 5 #ifndef PRINTING_PRINT_JOB_CONSTANTS_H_ |
| 6 #define PRINTING_PRINT_JOB_CONSTANTS_H_ | 6 #define PRINTING_PRINT_JOB_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "printing/printing_export.h" | 9 #include "printing/printing_export.h" |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 PRINTING_EXPORT extern const char kSettingMarginTop[]; | 38 PRINTING_EXPORT extern const char kSettingMarginTop[]; |
| 39 PRINTING_EXPORT extern const char kSettingMarginsCustom[]; | 39 PRINTING_EXPORT extern const char kSettingMarginsCustom[]; |
| 40 PRINTING_EXPORT extern const char kSettingMarginsType[]; | 40 PRINTING_EXPORT extern const char kSettingMarginsType[]; |
| 41 PRINTING_EXPORT extern const char kSettingPreviewPageCount[]; | 41 PRINTING_EXPORT extern const char kSettingPreviewPageCount[]; |
| 42 PRINTING_EXPORT extern const char kSettingPageRange[]; | 42 PRINTING_EXPORT extern const char kSettingPageRange[]; |
| 43 PRINTING_EXPORT extern const char kSettingPageRangeFrom[]; | 43 PRINTING_EXPORT extern const char kSettingPageRangeFrom[]; |
| 44 PRINTING_EXPORT extern const char kSettingPageRangeTo[]; | 44 PRINTING_EXPORT extern const char kSettingPageRangeTo[]; |
| 45 PRINTING_EXPORT extern const char kSettingPageWidth[]; | 45 PRINTING_EXPORT extern const char kSettingPageWidth[]; |
| 46 PRINTING_EXPORT extern const char kSettingPageHeight[]; | 46 PRINTING_EXPORT extern const char kSettingPageHeight[]; |
| 47 PRINTING_EXPORT extern const char kSettingPreviewModifiable[]; | 47 PRINTING_EXPORT extern const char kSettingPreviewModifiable[]; |
| 48 PRINTING_EXPORT extern const char kSettingPrintToPDF[]; |
| 49 PRINTING_EXPORT extern const char kSettingPrintWithPrivet[]; |
| 50 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[]; |
| 51 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[]; |
| 48 PRINTING_EXPORT extern const char kSettingPrintableAreaX[]; | 52 PRINTING_EXPORT extern const char kSettingPrintableAreaX[]; |
| 49 PRINTING_EXPORT extern const char kSettingPrintableAreaY[]; | 53 PRINTING_EXPORT extern const char kSettingPrintableAreaY[]; |
| 50 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[]; | 54 PRINTING_EXPORT extern const char kSettingPrinterDescription[]; |
| 51 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[]; | |
| 52 PRINTING_EXPORT extern const char kSettingPrinterName[]; | 55 PRINTING_EXPORT extern const char kSettingPrinterName[]; |
| 53 PRINTING_EXPORT extern const char kSettingPrintToPDF[]; | 56 PRINTING_EXPORT extern const char kSettingPrinterOptions[]; |
| 54 PRINTING_EXPORT extern const char kSettingPrintWithPrivet[]; | |
| 55 PRINTING_EXPORT extern const char kSettingTicket[]; | 57 PRINTING_EXPORT extern const char kSettingTicket[]; |
| 56 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[]; | 58 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[]; |
| 57 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[]; | 59 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[]; |
| 58 | 60 |
| 59 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX; | 61 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX; |
| 60 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX; | 62 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX; |
| 61 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[]; | 63 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[]; |
| 62 | 64 |
| 63 #if defined (USE_CUPS) | 65 #if defined (USE_CUPS) |
| 64 // Printer color models | 66 // Printer color models |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not | 132 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not |
| 131 NO_MARGINS, | 133 NO_MARGINS, |
| 132 PRINTABLE_AREA_MARGINS, | 134 PRINTABLE_AREA_MARGINS, |
| 133 CUSTOM_MARGINS, | 135 CUSTOM_MARGINS, |
| 134 MARGIN_TYPE_LAST = CUSTOM_MARGINS | 136 MARGIN_TYPE_LAST = CUSTOM_MARGINS |
| 135 }; | 137 }; |
| 136 | 138 |
| 137 } // namespace printing | 139 } // namespace printing |
| 138 | 140 |
| 139 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ | 141 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ |
| OLD | NEW |