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