[email protected] | c48bee2 | 2011-03-29 02:36:26 | [diff] [blame] | 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 | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "printing/print_job_constants.h" | ||||
6 | |||||
7 | namespace printing { | ||||
8 | |||||
[email protected] | c97e5e8 | 2011-04-05 18:50:23 | [diff] [blame^] | 9 | // Print job setting 'collate'. |
10 | const char kSettingCollate[] = "collate"; | ||||
11 | |||||
[email protected] | c48bee2 | 2011-03-29 02:36:26 | [diff] [blame] | 12 | // Print out color: true for color, false for grayscale. |
13 | const char kSettingColor[] = "color"; | ||||
14 | |||||
[email protected] | c97e5e8 | 2011-04-05 18:50:23 | [diff] [blame^] | 15 | // Number of copies. |
16 | const char kSettingCopies[] = "copies"; | ||||
17 | |||||
[email protected] | c48bee2 | 2011-03-29 02:36:26 | [diff] [blame] | 18 | // Page orientation: true for landscape, false for portrait. |
19 | const char kSettingLandscape[] = "landscape"; | ||||
20 | |||||
[email protected] | bb27c9b | 2011-03-31 01:21:39 | [diff] [blame] | 21 | // Print to PDF option: true if selected, false if not. |
22 | const char kSettingPrintToPDF[] = "printToPDF"; | ||||
23 | |||||
[email protected] | f803c93 | 2011-03-30 16:40:12 | [diff] [blame] | 24 | // Printer name. |
25 | const char kSettingPrinterName[] = "printerName"; | ||||
26 | |||||
[email protected] | c48bee2 | 2011-03-29 02:36:26 | [diff] [blame] | 27 | } // namespace printing |