// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PRINTING_PRINTER_STATUS_H_ #define PRINTING_PRINTER_STATUS_H_ #include <cups/cups.h> #include <string> #include <vector> #include "base/component_export.h" namespace printing { // Represents the status of a printer containing the properties printer-state, // printer-state-reasons, and printer-state-message. struct COMPONENT_EXPORT(PRINTING_BASE) PrinterStatus { … }; } // namespace printing #endif // PRINTING_PRINTER_STATUS_H_