summaryrefslogtreecommitdiffstats
path: root/printing/backend/print_backend.h
diff options
context:
space:
mode:
authoralekseys@chromium.org <alekseys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-13 22:00:57 +0000
committeralekseys@chromium.org <alekseys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-13 22:00:57 +0000
commit117eb82d7a3b62cb363fb8e64dc9aa3a7ef7e028 (patch)
tree996988f3b9d32f0c8db3453dfcb9a62c1d8d6fc6 /printing/backend/print_backend.h
parent3a8b058d8c2eb1a6345196fdf8158593a3bcfeef (diff)
downloadchromium_src-117eb82d7a3b62cb363fb8e64dc9aa3a7ef7e028.zip
chromium_src-117eb82d7a3b62cb363fb8e64dc9aa3a7ef7e028.tar.gz
chromium_src-117eb82d7a3b62cb363fb8e64dc9aa3a7ef7e028.tar.bz2
Add paper size reporting for CUPS printers (to let user to select one in the Print Preview).
BUG=239879 Review URL: https://codereview.chromium.org/334763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277098 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/backend/print_backend.h')
-rw-r--r--printing/backend/print_backend.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/printing/backend/print_backend.h b/printing/backend/print_backend.h
index 3b307f1..e03ef42 100644
--- a/printing/backend/print_backend.h
+++ b/printing/backend/print_backend.h
@@ -52,7 +52,8 @@ struct PRINTING_EXPORT PrinterSemanticCapsAndDefaults {
ColorModel bw_model;
struct Paper {
- std::string name;
+ std::string display_name;
+ std::string vendor_id;
gfx::Size size_um;
};
std::vector<Paper> papers;