#ifndef CHROME_BROWSER_UI_WEBUI_TOP_CHROME_TOP_CHROME_WEBUI_CONFIG_H_
#define CHROME_BROWSER_UI_WEBUI_TOP_CHROME_TOP_CHROME_WEBUI_CONFIG_H_
#include <optional>
#include <string>
#include <string_view>
#include <type_traits>
#include "base/functional/function_ref.h"
#include "content/public/browser/webui_config.h"
namespace content {
class WebUI;
class WebUIController;
}
class GURL;
class TopChromeWebUIConfig : public content::WebUIConfig { … };
template <typename T>
class DefaultTopChromeWebUIConfig : public TopChromeWebUIConfig { … };
#endif