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

Unified Diff: printing/backend/print_backend.cc

Issue 153373002: Extend PrinterSemanticCapsAndDefaults with Collate, Copies, PaperSize and Dpi capabilities. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unnessesary indirection Created 6 years, 10 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
« no previous file with comments | « printing/backend/print_backend.h ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/print_backend.cc
diff --git a/printing/backend/print_backend.cc b/printing/backend/print_backend.cc
index 29d38fba6458b860792d51e202f39868e1e07650..1ec71462a6f6810693d653da30f349ec9536068a 100644
--- a/printing/backend/print_backend.cc
+++ b/printing/backend/print_backend.cc
@@ -14,9 +14,15 @@ PrinterBasicInfo::~PrinterBasicInfo() {}
PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults()
: color_changeable(false),
- duplex_capable(false),
color_default(false),
- duplex_default(UNKNOWN_DUPLEX_MODE) {}
+#if defined (OS_WIN)
+ collate_capable(false),
+ collate_default(false),
+ copies_capable(false),
+#endif
+ duplex_capable(false),
+ duplex_default(UNKNOWN_DUPLEX_MODE) {
+}
PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {}
« no previous file with comments | « printing/backend/print_backend.h ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698