#ifndef CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_COMMON_H_
#define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_COMMON_H_
#include "build/chromeos_buildflags.h"
#include "components/printing/common/print.mojom-forward.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "printing/buildflags/buildflags.h"
namespace content {
class RenderFrameHost;
class WebContents;
}
namespace printing {
void StartPrint(
content::WebContents* web_contents,
#if BUILDFLAG(IS_CHROMEOS_ASH)
mojo::PendingAssociatedRemote<mojom::PrintRenderer> print_renderer,
#endif
bool print_preview_disabled,
bool has_selection);
void StartBasicPrint(content::WebContents* contents);
void StartPrintNodeUnderContextMenu(content::RenderFrameHost* rfh,
bool print_preview_disabled);
content::RenderFrameHost* GetFrameToPrint(content::WebContents* contents);
content::RenderFrameHost* GetFullPagePlugin(content::WebContents* contents);
}
#endif