#ifndef CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_bubble.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_hide_callback.h"
#include "ui/gfx/animation/animation_delegate.h"
#include "ui/views/widget/widget_observer.h"
class ExclusiveAccessBubbleViewsContext;
namespace gfx {
class SlideAnimation;
}
namespace views {
class View;
class Widget;
}
class SubtleNotificationView;
class ExclusiveAccessBubbleViews : public ExclusiveAccessBubble,
public gfx::AnimationDelegate,
public views::WidgetObserver { … };
#endif