#ifndef CHROME_BROWSER_UI_WEBUI_INTERNALS_INTERNALS_UI_H_
#define CHROME_BROWSER_UI_WEBUI_INTERNALS_INTERNALS_UI_H_
#include "base/memory/raw_ptr.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/web_ui_data_source.h"
#include "ui/webui/mojo_web_ui_controller.h"
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/ui/webui/internals/user_education/user_education_internals.mojom.h"
#include "components/user_education/webui/help_bubble_handler.h"
#include "ui/webui/color_change_listener/color_change_handler.h"
#include "ui/webui/resources/cr_components/help_bubble/help_bubble.mojom.h"
#endif
namespace content {
class WebUI;
}
class InternalsUI : public ui::MojoWebUIController
#if !BUILDFLAG(IS_ANDROID)
,
public help_bubble::mojom::HelpBubbleHandlerFactory
#endif
{ … };
#endif