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 kPreviewInitiatorHostId[]; |
| 16 PRINTING_EXPORT extern const char kPreviewInitiatorRoutingId[]; |
15 PRINTING_EXPORT extern const char kPreviewUIID[]; | 17 PRINTING_EXPORT extern const char kPreviewUIID[]; |
16 PRINTING_EXPORT extern const char kSettingCapabilities[]; | 18 PRINTING_EXPORT extern const char kSettingCapabilities[]; |
17 PRINTING_EXPORT extern const char kSettingCloudPrintId[]; | 19 PRINTING_EXPORT extern const char kSettingCloudPrintId[]; |
18 PRINTING_EXPORT extern const char kSettingCloudPrintDialog[]; | 20 PRINTING_EXPORT extern const char kSettingCloudPrintDialog[]; |
19 PRINTING_EXPORT extern const char kSettingCollate[]; | 21 PRINTING_EXPORT extern const char kSettingCollate[]; |
20 PRINTING_EXPORT extern const char kSettingColor[]; | 22 PRINTING_EXPORT extern const char kSettingColor[]; |
21 PRINTING_EXPORT extern const char kSettingSetColorAsDefault[]; | 23 PRINTING_EXPORT extern const char kSettingSetColorAsDefault[]; |
22 PRINTING_EXPORT extern const char kSettingContentHeight[]; | 24 PRINTING_EXPORT extern const char kSettingContentHeight[]; |
23 PRINTING_EXPORT extern const char kSettingContentWidth[]; | 25 PRINTING_EXPORT extern const char kSettingContentWidth[]; |
24 PRINTING_EXPORT extern const char kSettingCopies[]; | 26 PRINTING_EXPORT extern const char kSettingCopies[]; |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not | 138 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not |
137 NO_MARGINS, | 139 NO_MARGINS, |
138 PRINTABLE_AREA_MARGINS, | 140 PRINTABLE_AREA_MARGINS, |
139 CUSTOM_MARGINS, | 141 CUSTOM_MARGINS, |
140 MARGIN_TYPE_LAST = CUSTOM_MARGINS | 142 MARGIN_TYPE_LAST = CUSTOM_MARGINS |
141 }; | 143 }; |
142 | 144 |
143 } // namespace printing | 145 } // namespace printing |
144 | 146 |
145 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ | 147 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ |
OLD | NEW |