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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[]; | 54 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[]; |
55 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[]; | 55 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[]; |
56 PRINTING_EXPORT extern const char kSettingPrintableAreaX[]; | 56 PRINTING_EXPORT extern const char kSettingPrintableAreaX[]; |
57 PRINTING_EXPORT extern const char kSettingPrintableAreaY[]; | 57 PRINTING_EXPORT extern const char kSettingPrintableAreaY[]; |
58 PRINTING_EXPORT extern const char kSettingPrinterDescription[]; | 58 PRINTING_EXPORT extern const char kSettingPrinterDescription[]; |
59 PRINTING_EXPORT extern const char kSettingPrinterName[]; | 59 PRINTING_EXPORT extern const char kSettingPrinterName[]; |
60 PRINTING_EXPORT extern const char kSettingPrinterOptions[]; | 60 PRINTING_EXPORT extern const char kSettingPrinterOptions[]; |
61 PRINTING_EXPORT extern const char kSettingTicket[]; | 61 PRINTING_EXPORT extern const char kSettingTicket[]; |
62 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[]; | 62 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[]; |
63 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[]; | 63 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[]; |
| 64 PRINTING_EXPORT extern const char kSettingShowSystemDialog[]; |
64 | 65 |
65 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX; | 66 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX; |
66 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX; | 67 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX; |
67 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[]; | 68 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[]; |
68 | 69 |
69 #if defined (USE_CUPS) | 70 #if defined (USE_CUPS) |
70 // Printer color models | 71 // Printer color models |
71 PRINTING_EXPORT extern const char kBlack[]; | 72 PRINTING_EXPORT extern const char kBlack[]; |
72 PRINTING_EXPORT extern const char kCMYK[]; | 73 PRINTING_EXPORT extern const char kCMYK[]; |
73 PRINTING_EXPORT extern const char kKCMY[]; | 74 PRINTING_EXPORT extern const char kKCMY[]; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not | 137 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not |
137 NO_MARGINS, | 138 NO_MARGINS, |
138 PRINTABLE_AREA_MARGINS, | 139 PRINTABLE_AREA_MARGINS, |
139 CUSTOM_MARGINS, | 140 CUSTOM_MARGINS, |
140 MARGIN_TYPE_LAST = CUSTOM_MARGINS | 141 MARGIN_TYPE_LAST = CUSTOM_MARGINS |
141 }; | 142 }; |
142 | 143 |
143 } // namespace printing | 144 } // namespace printing |
144 | 145 |
145 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ | 146 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ |
OLD | NEW |