blob: 5442690c7d73a25ef7ed4f7d182d2e6e648210e7 [file] [log] [blame]
[email protected]c48bee22011-03-29 02:36:261// 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
7namespace printing {
8
[email protected]c97e5e82011-04-05 18:50:239// Print job setting 'collate'.
10const char kSettingCollate[] = "collate";
11
[email protected]c48bee22011-03-29 02:36:2612// Print out color: true for color, false for grayscale.
13const char kSettingColor[] = "color";
14
[email protected]c97e5e82011-04-05 18:50:2315// Number of copies.
16const char kSettingCopies[] = "copies";
17
[email protected]c48bee22011-03-29 02:36:2618// Page orientation: true for landscape, false for portrait.
19const char kSettingLandscape[] = "landscape";
20
[email protected]bb27c9b2011-03-31 01:21:3921// Print to PDF option: true if selected, false if not.
22const char kSettingPrintToPDF[] = "printToPDF";
23
[email protected]f803c932011-03-30 16:40:1224// Printer name.
25const char kSettingPrinterName[] = "printerName";
26
[email protected]c48bee22011-03-29 02:36:2627} // namespace printing