summaryrefslogtreecommitdiffstats
path: root/printing/backend/print_backend.h
diff options
context:
space:
mode:
authorvitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-07 23:48:37 +0000
committervitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-07 23:48:37 +0000
commit702484bde5a044d224230f08ea12aeeb7cd069d6 (patch)
tree351e4cd5286f8eb82454289e027c696903fb03f3 /printing/backend/print_backend.h
parent35f156649669568f85f992745a4528e829b7f921 (diff)
downloadchromium_src-702484bde5a044d224230f08ea12aeeb7cd069d6.zip
chromium_src-702484bde5a044d224230f08ea12aeeb7cd069d6.tar.gz
chromium_src-702484bde5a044d224230f08ea12aeeb7cd069d6.tar.bz2
Revert 275646 "Generalize printer color model handling, get rid ..."
Speculative revert. Something breaks "Linux ASan LSan Tests", TaskManagerNewPrintPreview. > Generalize printer color model handling, get rid of CUPS specific case. Enable supported paper szes reporting for all platforms. > > BUG=239879 > > Review URL: https://codereview.chromium.org/324523002 TBR=alekseys@chromium.org Review URL: https://codereview.chromium.org/319373004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/backend/print_backend.h')
-rw-r--r--printing/backend/print_backend.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/printing/backend/print_backend.h b/printing/backend/print_backend.h
index 3b307f1..30e4512 100644
--- a/printing/backend/print_backend.h
+++ b/printing/backend/print_backend.h
@@ -48,18 +48,28 @@ struct PRINTING_EXPORT PrinterSemanticCapsAndDefaults {
bool color_changeable;
bool color_default;
+
+ // These are CUPS specific data, which soon be removed altogether. They are
+ // not defined under USE_CUPS to do not pull CUPS dependency into common code.
+#if defined(OS_POSIX)
+ // TODO(alekseys): Resolve color model within printing context, do not expose
+ // it outside of the context.
ColorModel color_model;
ColorModel bw_model;
+#endif
+#if defined(OS_WIN)
struct Paper {
std::string name;
gfx::Size size_um;
};
+
std::vector<Paper> papers;
Paper default_paper;
std::vector<gfx::Size> dpis;
gfx::Size default_dpi;
+#endif
};
struct PRINTING_EXPORT PrinterCapsAndDefaults {