blob: 8dfe86ada7588bd5032c9c761717d7f26d7dbc07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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_
|