#ifndef ASH_SYSTEM_UNIFIED_GLANCEABLE_TRAY_CHILD_BUBBLE_H_
#define ASH_SYSTEM_UNIFIED_GLANCEABLE_TRAY_CHILD_BUBBLE_H_
#include "ash/ash_export.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/view.h"
namespace ash {
class ASH_EXPORT GlanceableTrayChildBubble : public views::View {
METADATA_HEADER(GlanceableTrayChildBubble, views::View)
public:
explicit GlanceableTrayChildBubble(bool use_glanceables_container_style);
GlanceableTrayChildBubble(const GlanceableTrayChildBubble&) = delete;
GlanceableTrayChildBubble& operator-(const GlanceableTrayChildBubble&) =
delete;
~GlanceableTrayChildBubble() override = default;
};
}
#endif