#ifndef COMPONENTS_SAFE_BROWSING_CONTENT_BROWSER_SAFE_BROWSING_TAB_OBSERVER_H_
#define COMPONENTS_SAFE_BROWSING_CONTENT_BROWSER_SAFE_BROWSING_TAB_OBSERVER_H_
#include <memory>
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/web_contents_user_data.h"
namespace content {
class WebContents;
}
namespace safe_browsing {
class ClientSideDetectionHost;
class ClientSideDetectionService;
class SafeBrowsingTabObserver
: public content::WebContentsUserData<SafeBrowsingTabObserver> { … };
}
#endif