chromium/components/os_crypt/sync/key_storage_linux.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_OS_CRYPT_SYNC_KEY_STORAGE_LINUX_H_
#define COMPONENTS_OS_CRYPT_SYNC_KEY_STORAGE_LINUX_H_

#include <memory>
#include <optional>
#include <string>

#include "base/component_export.h"
#include "components/os_crypt/sync/key_storage_util_linux.h"

namespace base {
class SequencedTaskRunner;
class WaitableEvent;
}  // namespace base

namespace os_crypt {
struct Config;
}

// An API for retrieving OSCrypt's password from the system's password storage
// service.
class COMPONENT_EXPORT(OS_CRYPT) KeyStorageLinux {};

#endif  // COMPONENTS_OS_CRYPT_SYNC_KEY_STORAGE_LINUX_H_