chromium/components/user_education/webui/help_bubble_webui.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 COMPONENTS_USER_EDUCATION_WEBUI_HELP_BUBBLE_WEBUI_H_
#define COMPONENTS_USER_EDUCATION_WEBUI_HELP_BUBBLE_WEBUI_H_

#include <memory>

#include "components/user_education/common/help_bubble.h"
#include "components/user_education/common/help_bubble_factory.h"
#include "components/user_education/common/help_bubble_params.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/interaction/element_tracker.h"
#include "ui/base/interaction/framework_specific_implementation.h"

namespace content {
class WebContents;
}

namespace user_education {

class HelpBubbleHandlerBase;

// This is a thin wrapper around HelpBubbleHandler that implements the
// HelpBubble interaface.
class HelpBubbleWebUI : public HelpBubble {};

// This factory uses HelpBubbleHandler to show a help bubble and create a
// HelpBubbleWebUI wrapper.
class HelpBubbleFactoryWebUI : public HelpBubbleFactory {};

}  // namespace user_education

#endif  // COMPONENTS_USER_EDUCATION_WEBUI_HELP_BUBBLE_WEBUI_H_