Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: printing/backend/cups_ipp_util.h

Issue 2117713002: Print directly to CUPS using the IPP APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ippRead
Patch Set: lint Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: printing/backend/cups_ipp_util.h
diff --git a/printing/backend/cups_ipp_util.h b/printing/backend/cups_ipp_util.h
index 9887ca5664c8aa1a5f25470d98e42779c0152896..f0c6c63afea9a8e940abb090d7c1ec79d09ddf47 100644
--- a/printing/backend/cups_ipp_util.h
+++ b/printing/backend/cups_ipp_util.h
@@ -13,6 +13,17 @@
namespace printing {
+// property names
+extern const char kIppCollate[]; // RFC 3381
Lei Zhang 2016/07/25 21:06:04 No need for comments here.
skau 2016/07/27 00:16:47 Done.
+extern const char kIppCopies[];
+extern const char kIppColor[];
+extern const char kIppMedia[];
+extern const char kIppDuplex[];
+
+// collation values
+extern const char kCollated[];
+extern const char kUncollated[];
+
// Returns the default ColorModel for |printer|.
ColorModel DefaultColorModel(const CupsOptionProvider& printer);

Powered by Google App Engine
This is Rietveld 408576698