chromium/ui/webui/examples/app/main_delegate.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_WEBUI_EXAMPLES_APP_MAIN_DELEGATE_H_
#define UI_WEBUI_EXAMPLES_APP_MAIN_DELEGATE_H_

#include <optional>

#include "content/public/app/content_main_delegate.h"

namespace content {
class ContentBrowserClient;
class ContentClient;
class ContentRendererClient;
}  // namespace content

namespace webui_examples {

class MainDelegate : public content::ContentMainDelegate {};

}  // namespace webui_examples

#endif  // UI_WEBUI_EXAMPLES_APP_MAIN_DELEGATE_H_