#ifndef EXTENSIONS_COMMON_API_PRINTER_PROVIDER_INTERNAL_H__
#define EXTENSIONS_COMMON_API_PRINTER_PROVIDER_INTERNAL_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
#include "extensions/common/api/printer_provider.h"
namespace extensions {
namespace api {
namespace printer_provider_internal {
enum class PrintError { … };
const char* ToString(PrintError as_enum);
PrintError ParsePrintError(std::string_view as_string);
std::u16string GetPrintErrorParseError(std::string_view as_string);
namespace ReportPrinters {
struct Params { … };
}
namespace ReportUsbPrinterInfo {
struct Params { … };
}
namespace ReportPrinterCapability {
struct Params { … };
}
namespace ReportPrintResult {
struct Params { … };
}
namespace GetPrintData {
struct Params { … };
namespace Results {
struct Blob { … };
base::Value::List Create(const Blob& blob);
}
}
}
}
}
#endif