#ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_CONTENT_STORE_H_
#define COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_CONTENT_STORE_H_
#include <memory>
#include <string>
#include <unordered_map>
#include "base/containers/lru_cache.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "components/dom_distiller/core/article_entry.h"
#include "components/dom_distiller/core/proto/distilled_article.pb.h"
namespace dom_distiller {
const int kDefaultMaxNumCachedEntries = …;
class DistilledContentStore { … };
class InMemoryContentStore : public DistilledContentStore { … };
}
#endif