#ifndef COMPONENTS_PRINTING_BROWSER_PRINT_MANAGER_UTILS_H_
#define COMPONENTS_PRINTING_BROWSER_PRINT_MANAGER_UTILS_H_
#include <string>
#include "components/printing/common/print.mojom-forward.h"
namespace content {
class WebContents;
}
namespace printing {
class PrintSettings;
bool IsOopifEnabled();
void CreateCompositeClientIfNeeded(content::WebContents* web_contents,
const std::string& user_agent);
void RenderParamsFromPrintSettings(const PrintSettings& settings,
mojom::PrintParams* params);
}
#endif