| 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 PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} | 15 PrinterCapsAndDefaults::PrinterCapsAndDefaults() {} |
| 16 | 16 |
| 17 PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} | 17 PrinterCapsAndDefaults::~PrinterCapsAndDefaults() {} |
| 18 | 18 |
| 19 PrinterDriverInfo::PrinterDriverInfo() {} | |
| 20 | |
| 21 PrinterDriverInfo::~PrinterDriverInfo() {} | |
| 22 | |
| 23 PrintBackend::~PrintBackend() {} | 19 PrintBackend::~PrintBackend() {} |
| 24 | 20 |
| 25 } // namespace printing | 21 } // namespace printing |
| OLD | NEW |