OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "printing/printing_export.h" | 8 #include "printing/printing_export.h" |
9 | 9 |
10 namespace printing { | 10 namespace printing { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
60 CENTER, | 60 CENTER, |
61 RIGHT | 61 RIGHT |
62 }; | 62 }; |
63 | 63 |
64 // Specifies the vertical alignment of the Headers and Footers. | 64 // Specifies the vertical alignment of the Headers and Footers. |
65 enum VerticalHeaderFooterPosition { | 65 enum VerticalHeaderFooterPosition { |
66 TOP, | 66 TOP, |
67 BOTTOM | 67 BOTTOM |
68 }; | 68 }; |
69 | 69 |
70 // Print job color mode values. | |
71 enum ColorMode { | |
72 CMYK, | |
vandebo (ex-Chrome)
2011/09/02 22:38:18
Is there a reason for this enum ordering? Putting
kmadhusu
2011/09/04 01:52:51
On Win, DMCOLOR_COLOR is 2 and DMCOLOR_MONOCHROME
| |
73 GRAY, | |
74 COLOR, | |
75 }; | |
76 | |
70 } // namespace printing | 77 } // namespace printing |
71 | 78 |
72 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ | 79 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ |
OLD | NEW |