#ifndef CHROME_BROWSER_UI_PASSWORDS_WELL_KNOWN_CHANGE_PASSWORD_NAVIGATION_THROTTLE_H_
#define CHROME_BROWSER_UI_PASSWORDS_WELL_KNOWN_CHANGE_PASSWORD_NAVIGATION_THROTTLE_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "components/password_manager/core/browser/well_known_change_password/well_known_change_password_state.h"
#include "components/password_manager/core/browser/well_known_change_password/well_known_change_password_util.h"
#include "content/public/browser/navigation_throttle.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
class GURL;
namespace affiliations {
class AffiliationService;
}
namespace content {
class NavigationHandle;
}
class WellKnownChangePasswordNavigationThrottle
: public content::NavigationThrottle,
public password_manager::WellKnownChangePasswordStateDelegate { … };
#endif