blob: d071201d072d93c6794aeff95025391f74eb4735 [file] [log] [blame]
[email protected]de6ac322012-03-05 23:17:251// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]8e553f492010-10-25 20:05:442// 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
7namespace printing {
8
[email protected]3fe291b2011-06-22 06:18:189PrinterBasicInfo::PrinterBasicInfo()
10 : printer_status(0),
11 is_default(false) {}
[email protected]8e553f492010-10-25 20:05:4412
13PrinterBasicInfo::~PrinterBasicInfo() {}
14
[email protected]8b6098e2012-09-07 04:21:2115PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults()
[email protected]dfb4a9d2014-06-05 21:44:4516 : collate_capable(false),
[email protected]15b0a342014-02-05 04:11:2217 collate_default(false),
18 copies_capable(false),
[email protected]15b0a342014-02-05 04:11:2219 duplex_capable(false),
[email protected]dfb4a9d2014-06-05 21:44:4520 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]8b6098e2012-09-07 04:21:2129
30PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {}
31
[email protected]d2f05d02011-01-27 18:51:0132PrinterCapsAndDefaults::PrinterCapsAndDefaults() {}
33
34PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {}
35
[email protected]8e553f492010-10-25 20:05:4436PrintBackend::~PrintBackend() {}
37
[email protected]8e553f492010-10-25 20:05:4438} // namespace printing