#include "components/autofill/core/browser/webdata/autofill_table_encryptor_factory.h"
#include <memory>
#include "base/memory/singleton.h"
#include "components/autofill/core/browser/webdata/system_encryptor.h"
namespace autofill {
AutofillTableEncryptorFactory::AutofillTableEncryptorFactory() = default;
AutofillTableEncryptorFactory::~AutofillTableEncryptorFactory() = default;
AutofillTableEncryptorFactory* AutofillTableEncryptorFactory::GetInstance() { … }
std::unique_ptr<AutofillTableEncryptor>
AutofillTableEncryptorFactory::Create() { … }
void AutofillTableEncryptorFactory::SetDelegate(
std::unique_ptr<Delegate> delegate) { … }
}