#ifndef COMPONENTS_BLOCKED_CONTENT_POPUP_OPENER_TAB_HELPER_H_
#define COMPONENTS_BLOCKED_CONTENT_POPUP_OPENER_TAB_HELPER_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/time/tick_clock.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
namespace base {
class TickClock;
}
namespace content {
class WebContents;
}
namespace ui {
class ScopedVisibilityTracker;
}
namespace blocked_content {
class PopupTracker;
class PopupOpenerTabHelper
: public content::WebContentsObserver,
public content::WebContentsUserData<PopupOpenerTabHelper> { … };
}
#endif