#ifndef COMPONENTS_SAFE_BROWSING_CORE_BROWSER_DB_V4_STORE_H_
#define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_DB_V4_STORE_H_
#include <memory>
#include <string>
#include <string_view>
#include <unordered_map>
#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
#include "base/memory/ref_counted.h"
#include "base/task/sequenced_task_runner.h"
#include "base/time/time.h"
#include "components/safe_browsing/core/browser/db/hash_prefix_map.h"
#include "components/safe_browsing/core/browser/db/v4_protocol_manager_util.h"
#include "components/safe_browsing/core/common/proto/webui.pb.h"
namespace safe_browsing {
class V4Store;
struct V4StoreDeleter;
V4StorePtr;
UpdatedStoreReadyCallback;
IteratorMap;
enum StoreReadResult { … };
enum StoreWriteResult { … };
class V4StoreFactory { … };
class V4Store { … };
std::ostream& operator<<(std::ostream& os, const V4Store& store);
struct V4StoreDeleter { … };
}
#endif