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 |
11 namespace printing { | 11 namespace printing { |
12 | 12 |
13 PRINTING_EXPORT extern const char kIsFirstRequest[]; | 13 PRINTING_EXPORT extern const char kIsFirstRequest[]; |
14 PRINTING_EXPORT extern const char kPreviewRequestID[]; | 14 PRINTING_EXPORT extern const char kPreviewRequestID[]; |
15 PRINTING_EXPORT extern const char kPreviewUIID[]; | 15 PRINTING_EXPORT extern const char kPreviewUIID[]; |
| 16 PRINTING_EXPORT extern const char kSettingCapabilities[]; |
16 PRINTING_EXPORT extern const char kSettingCloudPrintId[]; | 17 PRINTING_EXPORT extern const char kSettingCloudPrintId[]; |
17 PRINTING_EXPORT extern const char kSettingCloudPrintDialog[]; | 18 PRINTING_EXPORT extern const char kSettingCloudPrintDialog[]; |
18 PRINTING_EXPORT extern const char kSettingCollate[]; | 19 PRINTING_EXPORT extern const char kSettingCollate[]; |
19 PRINTING_EXPORT extern const char kSettingColor[]; | 20 PRINTING_EXPORT extern const char kSettingColor[]; |
20 PRINTING_EXPORT extern const char kSettingSetColorAsDefault[]; | 21 PRINTING_EXPORT extern const char kSettingSetColorAsDefault[]; |
21 PRINTING_EXPORT extern const char kSettingContentHeight[]; | 22 PRINTING_EXPORT extern const char kSettingContentHeight[]; |
22 PRINTING_EXPORT extern const char kSettingContentWidth[]; | 23 PRINTING_EXPORT extern const char kSettingContentWidth[]; |
23 PRINTING_EXPORT extern const char kSettingCopies[]; | 24 PRINTING_EXPORT extern const char kSettingCopies[]; |
24 PRINTING_EXPORT extern const char kSettingDeviceName[]; | 25 PRINTING_EXPORT extern const char kSettingDeviceName[]; |
25 PRINTING_EXPORT extern const char kSettingDuplexMode[]; | 26 PRINTING_EXPORT extern const char kSettingDuplexMode[]; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not | 130 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not |
130 NO_MARGINS, | 131 NO_MARGINS, |
131 PRINTABLE_AREA_MARGINS, | 132 PRINTABLE_AREA_MARGINS, |
132 CUSTOM_MARGINS, | 133 CUSTOM_MARGINS, |
133 MARGIN_TYPE_LAST = CUSTOM_MARGINS | 134 MARGIN_TYPE_LAST = CUSTOM_MARGINS |
134 }; | 135 }; |
135 | 136 |
136 } // namespace printing | 137 } // namespace printing |
137 | 138 |
138 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ | 139 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ |
OLD | NEW |