#ifndef CHROME_BROWSER_UI_WEBUI_AUTOFILL_AND_PASSWORD_MANAGER_INTERNALS_INTERNALS_UI_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_AUTOFILL_AND_PASSWORD_MANAGER_INTERNALS_INTERNALS_UI_HANDLER_H_
#include <optional>
#include <string>
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "components/autofill/core/browser/logging/log_receiver.h"
#include "content/public/browser/browsing_data_remover.h"
#include "content/public/browser/web_ui_message_handler.h"
namespace autofill {
class LogRouter;
}
namespace content {
class BrowserContext;
}
class Profile;
namespace autofill {
constexpr char kCacheResetDone[] = …;
constexpr char kCacheResetAlreadyInProgress[] = …;
void CreateAndAddInternalsHTMLSource(Profile* profile,
const std::string& source_name);
class AutofillCacheResetter : public content::BrowsingDataRemover::Observer { … };
class InternalsUIHandler : public content::WebUIMessageHandler,
public autofill::LogReceiver { … };
}
#endif