print_backend.cc revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
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 3// found in the LICENSE file. 4 5#include "printing/backend/print_backend.h" 6 7namespace printing { 8 9PrinterBasicInfo::PrinterBasicInfo() 10 : printer_status(0), 11 is_default(false) {} 12 13PrinterBasicInfo::~PrinterBasicInfo() {} 14 15PrinterSemanticCapsAndDefaults::PrinterSemanticCapsAndDefaults() 16 : color_changeable(false), 17 color_default(false), 18#if defined (OS_WIN) 19 collate_capable(false), 20 collate_default(false), 21 copies_capable(false), 22#endif 23 duplex_capable(false), 24 duplex_default(UNKNOWN_DUPLEX_MODE) { 25} 26 27PrinterSemanticCapsAndDefaults::~PrinterSemanticCapsAndDefaults() {} 28 29PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} 30 31PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} 32 33PrintBackend::~PrintBackend() {} 34 35} // namespace printing 36