chromium/content/browser/code_cache/simple_lru_cache.h

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

#ifndef CONTENT_BROWSER_CODE_CACHE_SIMPLE_LRU_CACHE_H_
#define CONTENT_BROWSER_CODE_CACHE_SIMPLE_LRU_CACHE_H_

#include <stdint.h>

#include <map>
#include <optional>
#include <string>
#include <vector>

#include "base/containers/span.h"
#include "base/time/time.h"
#include "base/types/strong_alias.h"
#include "content/common/content_export.h"
#include "content/common/features.h"
#include "mojo/public/cpp/base/big_buffer.h"

namespace content {

// A simple LRU cache, to measure the potential performance impact of
// memory-backed code cache.
class CONTENT_EXPORT SimpleLruCache {};

}  // namespace content

#endif  // CONTENT_BROWSER_CODE_CACHE_SIMPLE_LRU_CACHE_H_