chromium/components/memory_system/memory_system.h

// Copyright 2023 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_MEMORY_SYSTEM_MEMORY_SYSTEM_H_
#define COMPONENTS_MEMORY_SYSTEM_MEMORY_SYSTEM_H_

#include <memory>
#include <optional>

namespace memory_system {

struct DispatcherParameters;
struct GwpAsanParameters;
struct ProfilingClientParameters;

// The memory system. The memory system represents multiple memory components,
// i.e. GWP-ASan or Profiling Client, and takes care of proper initialization.
class MemorySystem {};

}  // namespace memory_system
#endif  // COMPONENTS_MEMORY_SYSTEM_MEMORY_SYSTEM_H_