blob: 8dfe86ada7588bd5032c9c761717d7f26d7dbc07 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PRINTING_PRINTER_QUERY_RESULT_H_
#define PRINTING_PRINTER_QUERY_RESULT_H_
#include "printing/printing_export.h"
namespace printing {
// Specifies query status codes.
enum PRINTING_EXPORT PrinterQueryResult {
UNKNOWN_FAILURE, // catchall error
SUCCESS, // successful
UNREACHABLE, // failed to reach the host
};
} // namespace printing
#endif // PRINTING_PRINTER_QUERY_RESULT_H_