OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "printing/backend/print_backend.h" | 5 #include "printing/backend/print_backend.h" |
6 | 6 |
7 namespace printing { | 7 namespace printing { |
8 | 8 |
9 PrinterBasicInfo::PrinterBasicInfo() | 9 PrinterBasicInfo::PrinterBasicInfo() |
10 : printer_status(0), | 10 : printer_status(0), |
11 is_default(false) {} | 11 is_default(false) {} |
12 | 12 |
13 PrinterBasicInfo::~PrinterBasicInfo() {} | 13 PrinterBasicInfo::~PrinterBasicInfo() {} |
14 | 14 |
15 PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults() | 15 PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults() |
16 : collate_capable(false), | 16 : collate_capable(false), |
17 collate_default(false), | 17 collate_default(false), |
18 copies_capable(false), | 18 copies_capable(false), |
19 duplex_capable(false), | 19 duplex_capable(false), |
20 duplex_default(UNKNOWN_DUPLEX_MODE), | 20 duplex_default(UNKNOWN_DUPLEX_MODE), |
21 color_changeable(false), | 21 color_changeable(false), |
22 color_default(false) | 22 color_default(false), |
23 #if defined (OS_POSIX) | |
24 , | |
25 color_model(UNKNOWN_COLOR_MODEL), | 23 color_model(UNKNOWN_COLOR_MODEL), |
26 bw_model(UNKNOWN_COLOR_MODEL) | 24 bw_model(UNKNOWN_COLOR_MODEL) |
27 #endif | |
28 {} | 25 {} |
29 | 26 |
30 PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {} | 27 PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {} |
31 | 28 |
32 PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} | 29 PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} |
33 | 30 |
34 PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} | 31 PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} |
35 | 32 |
36 PrintBackend::~PrintBackend() {} | 33 PrintBackend::~PrintBackend() {} |
37 | 34 |
38 } // namespace printing | 35 } // namespace printing |
OLD | NEW |