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 // Print using cloud print: true if selected, false if not. |
| 10 const char kSettingCloudPrintId[] = "cloudPrintID"; |
| 11 |
9 // Print job setting 'collate'. | 12 // Print job setting 'collate'. |
10 const char kSettingCollate[] = "collate"; | 13 const char kSettingCollate[] = "collate"; |
11 | 14 |
12 // Print out color: true for color, false for grayscale. | 15 // Print out color: true for color, false for grayscale. |
13 const char kSettingColor[] = "color"; | 16 const char kSettingColor[] = "color"; |
14 | 17 |
15 // Number of copies. | 18 // Number of copies. |
16 const char kSettingCopies[] = "copies"; | 19 const char kSettingCopies[] = "copies"; |
17 | 20 |
18 // Device name: Unique printer identifier. | 21 // Device name: Unique printer identifier. |
(...skipping 14 matching lines...) Expand all Loading... |
33 // The last page of a page range. (1-based) | 36 // The last page of a page range. (1-based) |
34 const char kSettingPageRangeTo[] = "to"; | 37 const char kSettingPageRangeTo[] = "to"; |
35 | 38 |
36 // Printer name. | 39 // Printer name. |
37 const char kSettingPrinterName[] = "printerName"; | 40 const char kSettingPrinterName[] = "printerName"; |
38 | 41 |
39 // Print to PDF option: true if selected, false if not. | 42 // Print to PDF option: true if selected, false if not. |
40 const char kSettingPrintToPDF[] = "printToPDF"; | 43 const char kSettingPrintToPDF[] = "printToPDF"; |
41 | 44 |
42 } // namespace printing | 45 } // namespace printing |
OLD | NEW |