#ifndef CHROME_BROWSER_UI_WEBUI_HISTORY_HISTORY_UI_H_
#define CHROME_BROWSER_UI_WEBUI_HISTORY_HISTORY_UI_H_
#include <memory>
#include "base/gtest_prod_util.h"
#include "components/page_image_service/mojom/page_image_service.mojom.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/user_education/webui/help_bubble_handler.h"
#include "content/public/browser/webui_config.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "ui/base/resource/resource_scale_factor.h"
#include "ui/webui/mojo_web_ui_controller.h"
#include "ui/webui/resources/cr_components/commerce/shopping_service.mojom.h"
#include "ui/webui/resources/cr_components/help_bubble/help_bubble.mojom.h"
#include "ui/webui/resources/cr_components/history_clusters/history_clusters.mojom-forward.h"
#include "ui/webui/resources/cr_components/history_embeddings/history_embeddings.mojom.h"
namespace base {
class RefCountedMemory;
}
namespace history_clusters {
class HistoryClustersHandler;
}
class HistoryEmbeddingsHandler;
namespace commerce {
class ShoppingServiceHandler;
}
namespace page_image_service {
class ImageServiceHandler;
}
class HistoryUIConfig : public content::WebUIConfig { … };
class HistoryUI : public ui::MojoWebUIController,
public shopping_service::mojom::ShoppingServiceHandlerFactory,
public help_bubble::mojom::HelpBubbleHandlerFactory { … };
#endif