#ifndef CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINT_PREVIEW_UI_UNTRUSTED_H_
#define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINT_PREVIEW_UI_UNTRUSTED_H_
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/browser/webui_config.h"
#include "ui/webui/untrusted_web_ui_controller.h"
namespace base {
class RefCountedMemory;
}
namespace content {
class WebUI;
}
namespace printing {
class PrintPreviewUIUntrusted;
class PrintPreviewUIUntrustedConfig
: public content::DefaultWebUIConfig<PrintPreviewUIUntrusted> { … };
class PrintPreviewUIUntrusted : public ui::UntrustedWebUIController { … };
}
#endif