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 #include "printing/print_job_constants.h" | 5 #include "printing/print_job_constants.h" |
6 | 6 |
7 namespace printing { | 7 namespace printing { |
8 | 8 |
9 // True if this is the first preview request. | 9 // True if this is the first preview request. |
10 const char kIsFirstRequest[] = "isFirstRequest"; | 10 const char kIsFirstRequest[] = "isFirstRequest"; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 104 |
105 // A page range. | 105 // A page range. |
106 const char kSettingPageRange[] = "pageRange"; | 106 const char kSettingPageRange[] = "pageRange"; |
107 | 107 |
108 // The first page of a page range. (1-based) | 108 // The first page of a page range. (1-based) |
109 const char kSettingPageRangeFrom[] = "from"; | 109 const char kSettingPageRangeFrom[] = "from"; |
110 | 110 |
111 // The last page of a page range. (1-based) | 111 // The last page of a page range. (1-based) |
112 const char kSettingPageRangeTo[] = "to"; | 112 const char kSettingPageRangeTo[] = "to"; |
113 | 113 |
| 114 const char kSettingPreviewModifiable[] = "previewModifiable"; |
| 115 |
114 // Printer name. | 116 // Printer name. |
115 const char kSettingPrinterName[] = "printerName"; | 117 const char kSettingPrinterName[] = "printerName"; |
116 | 118 |
117 // Print to PDF option: true if selected, false if not. | 119 // Print to PDF option: true if selected, false if not. |
118 const char kSettingPrintToPDF[] = "printToPDF"; | 120 const char kSettingPrintToPDF[] = "printToPDF"; |
119 | 121 |
120 // Indices used to represent first preview page and complete preview document. | 122 // Indices used to represent first preview page and complete preview document. |
121 const int FIRST_PAGE_INDEX = 0; | 123 const int FIRST_PAGE_INDEX = 0; |
122 const int COMPLETE_PREVIEW_DOCUMENT_INDEX = -1; | 124 const int COMPLETE_PREVIEW_DOCUMENT_INDEX = -1; |
123 | 125 |
124 #if defined (USE_CUPS) | 126 #if defined (USE_CUPS) |
125 const char kBlack[] = "Black"; | 127 const char kBlack[] = "Black"; |
126 const char kCMYK[] = "CMYK"; | 128 const char kCMYK[] = "CMYK"; |
127 const char kKCMY[] = "KCMY"; | 129 const char kKCMY[] = "KCMY"; |
128 const char kCMY_K[] = "CMY+K"; | 130 const char kCMY_K[] = "CMY+K"; |
129 const char kCMY[] = "CMY"; | 131 const char kCMY[] = "CMY"; |
130 const char kColor[] = "Color"; | 132 const char kColor[] = "Color"; |
131 const char kGray[] = "Gray"; | 133 const char kGray[] = "Gray"; |
132 const char kGrayscale[] = "Grayscale"; | 134 const char kGrayscale[] = "Grayscale"; |
133 const char kGreyscale[] = "Greyscale"; | 135 const char kGreyscale[] = "Greyscale"; |
134 const char kMonochrome[] = "Monochrome"; | 136 const char kMonochrome[] = "Monochrome"; |
135 const char kNormal[] = "Normal"; | 137 const char kNormal[] = "Normal"; |
136 const char kNormalGray[] = "Normal.Gray"; | 138 const char kNormalGray[] = "Normal.Gray"; |
137 const char kRGB[] = "RGB"; | 139 const char kRGB[] = "RGB"; |
138 const char kRGBA[] = "RGBA"; | 140 const char kRGBA[] = "RGBA"; |
139 const char kRGB16[] = "RGB16"; | 141 const char kRGB16[] = "RGB16"; |
140 #endif | 142 #endif |
141 | 143 |
142 } // namespace printing | 144 } // namespace printing |
OLD | NEW |