Chromium Code Reviews| Index: chrome/browser/chromeos/printing/printer_info.h |
| diff --git a/chrome/browser/chromeos/printing/printer_info.h b/chrome/browser/chromeos/printing/printer_info.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..be03e3919f6107ae1869ee172af347de6eac5a37 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/printing/printer_info.h |
| @@ -0,0 +1,32 @@ |
| +// Copyright 2017 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 CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_INFO_H_ |
| +#define CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_INFO_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/callback_forward.h" |
| + |
| +namespace chromeos { |
| + |
| +// Callback for basic printer information. |success| indicates if the request |
| +// succeeded at all. |make| represents the printer manufacturer. |model| is |
| +// the printer model. |autoconf| indicates if we think we can compute the |
| +// printer capabilites without a PPD. |
| +using PrinterInfoCallback = base::Callback<void(bool success, |
| + const std::string& make, |
| + const std::string& model, |
| + bool autoconf)>; |
| + |
| +// Dispatch an IPP request to |host| on |port| for |path| to obtain |
| +// basic printer information. |
| +void QueryPrinter(const std::string& host, |
|
Carlson
2017/05/25 19:04:35
Function name should probably reflect the fact tha
skau
2017/05/27 02:01:19
Done.
|
| + const int port, |
| + const std::string& path, |
| + const PrinterInfoCallback& callback); |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_INFO_H_ |