diff options
Diffstat (limited to 'printing/backend/print_backend.h')
-rw-r--r-- | printing/backend/print_backend.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/printing/backend/print_backend.h b/printing/backend/print_backend.h index 30e4512..3b307f1 100644 --- a/printing/backend/print_backend.h +++ b/printing/backend/print_backend.h @@ -48,28 +48,18 @@ 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 { |