#include "chrome/browser/safe_browsing/chrome_password_protection_service_factory.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/password_manager/account_password_store_factory.h"
#include "chrome/browser/password_manager/password_reuse_manager_factory.h"
#include "chrome/browser/password_manager/profile_password_store_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/safe_browsing/chrome_password_protection_service.h"
#include "chrome/browser/safe_browsing/safe_browsing_navigation_observer_manager_factory.h"
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
#include "chrome/browser/safe_browsing/verdict_cache_manager_factory.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/sync/user_event_service_factory.h"
#include "content/public/browser/browser_context.h"
namespace safe_browsing {
ChromePasswordProtectionService*
ChromePasswordProtectionServiceFactory::GetForProfile(Profile* profile) { … }
ChromePasswordProtectionServiceFactory*
ChromePasswordProtectionServiceFactory::GetInstance() { … }
ChromePasswordProtectionServiceFactory::ChromePasswordProtectionServiceFactory()
: … { … }
std::unique_ptr<KeyedService>
ChromePasswordProtectionServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
}