chromium/components/performance_manager/graph/node_attached_data_storage.h

// Copyright 2024 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_PERFORMANCE_MANAGER_GRAPH_NODE_ATTACHED_DATA_STORAGE_H_
#define COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_ATTACHED_DATA_STORAGE_H_

#include <map>
#include <memory>

#include "components/performance_manager/graph/node_inline_data.h"
#include "components/performance_manager/public/graph/node_attached_data.h"

namespace performance_manager {

// Stores NodeAttachedData in nodes using NodeInlineData.
class NodeAttachedDataStorage : public NodeInlineData<NodeAttachedDataStorage> {};

}  // namespace performance_manager

#endif  // COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_ATTACHED_DATA_STORAGE_H_