#ifndef CHROME_RENDERER_CHROME_CONTENT_SETTINGS_AGENT_DELEGATE_H_
#define CHROME_RENDERER_CHROME_CONTENT_SETTINGS_AGENT_DELEGATE_H_
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "components/content_settings/renderer/content_settings_agent_impl.h"
#include "extensions/buildflags/buildflags.h"
#if BUILDFLAG(ENABLE_EXTENSIONS)
namespace blink {
class WebSecurityOrigin;
}
namespace extensions {
class Dispatcher;
class Extension;
}
#endif
class ChromeContentSettingsAgentDelegate
: public content_settings::ContentSettingsAgentImpl::Delegate,
public content::RenderFrameObserver,
public content::RenderFrameObserverTracker<
ChromeContentSettingsAgentDelegate> { … };
#endif