[email protected] | de6ac32 | 2012-03-05 23:17:25 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 8e553f49 | 2010-10-25 20:05:44 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "printing/backend/print_backend.h" | ||||
6 | |||||
7 | namespace printing { | ||||
8 | |||||
[email protected] | 3fe291b | 2011-06-22 06:18:18 | [diff] [blame] | 9 | PrinterBasicInfo::PrinterBasicInfo() |
10 | : printer_status(0), | ||||
11 | is_default(false) {} | ||||
[email protected] | 8e553f49 | 2010-10-25 20:05:44 | [diff] [blame] | 12 | |
13 | PrinterBasicInfo::~PrinterBasicInfo() {} | ||||
14 | |||||
[email protected] | 8b6098e | 2012-09-07 04:21:21 | [diff] [blame] | 15 | PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults() |
[email protected] | dfb4a9d | 2014-06-05 21:44:45 | [diff] [blame^] | 16 | : collate_capable(false), |
[email protected] | 15b0a34 | 2014-02-05 04:11:22 | [diff] [blame] | 17 | collate_default(false), |
18 | copies_capable(false), | ||||
[email protected] | 15b0a34 | 2014-02-05 04:11:22 | [diff] [blame] | 19 | duplex_capable(false), |
[email protected] | dfb4a9d | 2014-06-05 21:44:45 | [diff] [blame^] | 20 | duplex_default(UNKNOWN_DUPLEX_MODE), |
21 | color_changeable(false), | ||||
22 | color_default(false) | ||||
23 | #if defined (OS_POSIX) | ||||
24 | , | ||||
25 | color_model(UNKNOWN_COLOR_MODEL), | ||||
26 | bw_model(UNKNOWN_COLOR_MODEL) | ||||
27 | #endif | ||||
28 | {} | ||||
[email protected] | 8b6098e | 2012-09-07 04:21:21 | [diff] [blame] | 29 | |
30 | PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {} | ||||
31 | |||||
[email protected] | d2f05d0 | 2011-01-27 18:51:01 | [diff] [blame] | 32 | PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} |
33 | |||||
34 | PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} | ||||
35 | |||||
[email protected] | 8e553f49 | 2010-10-25 20:05:44 | [diff] [blame] | 36 | PrintBackend::~PrintBackend() {} |
37 | |||||
[email protected] | 8e553f49 | 2010-10-25 20:05:44 | [diff] [blame] | 38 | } // namespace printing |