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

Unified Diff: printing/print_job_constants.h

Issue 7817013: PrintPreview: Added code to identify the printer default duplex value. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 4 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/print_job_constants.h
diff --git a/printing/print_job_constants.h b/printing/print_job_constants.h
index 7240340a8735dcbca3e7f7f44140baf2989e53e9..efc0482d914caf999b9153eda1c6234334329f5a 100644
--- a/printing/print_job_constants.h
+++ b/printing/print_job_constants.h
@@ -54,6 +54,13 @@ enum DuplexMode {
SHORT_EDGE,
};
+// Specifies the possible default duplex setting values.
+enum DefaultDuplexSetting {
+ UNKNOWN = -1,
+ ONE_SIDED,
+ TWO_SIDED,
+};
+
// Specifies the horizontal alignment of the headers and footers.
enum HorizontalHeaderFooterPosition {
LEFT,

Powered by Google App Engine
This is Rietveld 408576698