blob: 59a8af5158d423e67949656e8631b2417ff86254 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEBUI_COMMERCE_COMMERCE_INTERNALS_UI_CONFIG_H_
#define CHROME_BROWSER_UI_WEBUI_COMMERCE_COMMERCE_INTERNALS_UI_CONFIG_H_
#include "content/public/browser/internal_webui_config.h"
#include "content/public/common/url_constants.h"
namespace commerce {
class CommerceInternalsUIConfig : public content::InternalWebUIConfig {
public:
CommerceInternalsUIConfig();
~CommerceInternalsUIConfig() override;
// content::InternalWebUIConfig:
std::unique_ptr<content::WebUIController> CreateWebUIController(
content::WebUI* web_ui,
const GURL& url) override;
};
} // namespace commerce
#endif // CHROME_BROWSER_UI_WEBUI_COMMERCE_COMMERCE_INTERNALS_UI_CONFIG_H_