forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcups_ipp_constants.h
39 lines (28 loc) · 1022 Bytes
/
cups_ipp_constants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PRINTING_BACKEND_CUPS_IPP_CONSTANTS_H_
#define PRINTING_BACKEND_CUPS_IPP_CONSTANTS_H_
namespace printing {
// property names
extern const char kIppCollate[];
extern const char kIppCopies[];
extern const char kIppColor[];
extern const char kIppMedia[];
extern const char kIppDuplex[];
extern const char kIppRequestingUserName[];
extern const char kIppResolution[];
extern const char kIppPin[];
extern const char kIppPinEncryption[];
// collation values
extern const char kCollated[];
extern const char kUncollated[];
#if defined(OS_CHROMEOS)
extern const char kIppDocumentAttributes[];
extern const char kIppJobAttributes[];
extern const char kPinEncryptionNone[];
extern const char kOptionFalse[];
extern const char kOptionTrue[];
#endif // defined(OS_CHROMEOS)
} // namespace printing
#endif // PRINTING_BACKEND_CUPS_IPP_CONSTANTS_H_