#ifndef COMPONENTS_FAVICON_CORE_FAVICON_DATABASE_H_
#define COMPONENTS_FAVICON_CORE_FAVICON_DATABASE_H_
#include <optional>
#include <vector>
#include "base/feature_list.h"
#include "base/gtest_prod_util.h"
#include "base/memory/ref_counted.h"
#include "components/favicon/core/favicon_types.h"
#include "sql/database.h"
#include "sql/init_status.h"
#include "sql/meta_table.h"
#include "sql/statement.h"
namespace base {
class FilePath;
class RefCountedMemory;
class Time;
}
namespace url {
class Origin;
}
namespace favicon {
static const int kFaviconUpdateLastRequestedAfterDays = …;
class FaviconDatabase { … };
}
#endif