blob: 9b91320722b4345991b377b93bae96e95e890251 [file] [log] [blame]
// 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 <vector>
#include "base/callback_forward.h"
#include "printing/printer_query_result.h"
namespace printing {
struct PrinterStatus;
} // namespace printing
namespace chromeos {
// Callback for basic printer information. |result| indicates if the request
// succeeded at all. |status| contains current status. |make| represents the
// printer manufacturer. |model| is the printer model. |make_and_model| is
// the raw printer-make-and-model value from the printer. |autoconf| indicates
// if we think we can compute the printer capabilities without a PPD.
using PrinterInfoCallback =
base::OnceCallback<void(printing::PrinterQueryResult result,
const printing::PrinterStatus& status,
const std::string& make,
const std::string& model,
const std::string& make_and_model,
const std::vector<std::string>& document_formats,
bool autoconf)>;
// Dispatch an IPP request to |host| on |port| for |path| to obtain
// basic printer information.
void QueryIppPrinter(const std::string& host,
const int port,
const std::string& path,
bool encrypted,
PrinterInfoCallback callback);
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_INFO_H_