#ifndef CONTENT_BROWSER_UKM_INTERNALS_UI_H_
#define CONTENT_BROWSER_UKM_INTERNALS_UI_H_
#include "content/public/browser/web_ui_controller.h"
#include "content/public/browser/webui_config.h"
#include "content/public/common/url_constants.h"
namespace content {
class UkmInternalsUI;
class UkmInternalsUIConfig : public DefaultWebUIConfig<UkmInternalsUI> {
public:
UkmInternalsUIConfig()
: DefaultWebUIConfig(kChromeUIScheme, kChromeUIUkmHost) {}
};
class UkmInternalsUI : public WebUIController {
public:
explicit UkmInternalsUI(WebUI* web_ui);
UkmInternalsUI(const UkmInternalsUI&) = delete;
UkmInternalsUI& operator=(const UkmInternalsUI&) = delete;
};
}
#endif