// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_FIDO_PLATFORM_CREDENTIAL_STORE_H_ #define DEVICE_FIDO_PLATFORM_CREDENTIAL_STORE_H_ #include "base/component_export.h" #include "base/time/time.h" namespace device { namespace fido { // The PlatformCredentialStore interface wraps methods for deleting WebAuthn // credentials that belong to authenticators integrated into Chrome (currently // only the TouchIdAuthenticator in //device/fido/mac). class COMPONENT_EXPORT(DEVICE_FIDO) PlatformCredentialStore { … }; } // namespace fido } // namespace device #endif // DEVICE_FIDO_PLATFORM_CREDENTIAL_STORE_H_