#ifndef CHROME_BROWSER_SAFE_BROWSING_CHROME_PASSWORD_REUSE_DETECTION_MANAGER_CLIENT_H_
#define CHROME_BROWSER_SAFE_BROWSING_CHROME_PASSWORD_REUSE_DETECTION_MANAGER_CLIENT_H_
#include <memory>
#include <string>
#include <vector>
#include "chrome/browser/safe_browsing/phishy_interaction_tracker.h"
#include "components/autofill/core/browser/logging/log_manager.h"
#include "components/password_manager/core/browser/password_manager_client.h"
#include "components/safe_browsing/core/browser/password_protection/password_reuse_detection_manager.h"
#include "components/safe_browsing/core/browser/password_protection/password_reuse_detection_manager_client.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "components/signin/public/identity_manager/primary_account_change_event.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
namespace safe_browsing {
class PasswordProtectionService;
}
class ChromePasswordReuseDetectionManagerClient
: public safe_browsing::PasswordReuseDetectionManagerClient,
public content::WebContentsObserver,
public content::WebContentsUserData<
ChromePasswordReuseDetectionManagerClient>,
public content::RenderWidgetHost::InputEventObserver,
public signin::IdentityManager::Observer { … };
#endif