#ifndef COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CERTIFICATE_STORE_H_
#define COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CERTIFICATE_STORE_H_
#include <memory>
#include <optional>
#include <string>
#include "base/files/file_path.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "components/enterprise/client_certificates/core/client_identity.h"
#include "components/enterprise/client_certificates/core/store_error.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/leveldb_proto/public/proto_database.h"
namespace client_certificates_pb {
class ClientIdentity;
}
namespace leveldb_proto {
class ProtoDatabaseProvider;
}
namespace net {
class X509Certificate;
}
namespace client_certificates {
class PrivateKeyFactory;
class PrivateKey;
class CertificateStore : public KeyedService { … };
}
#endif