chromium/components/performance_manager/graph/node_attached_data_storage.cc

// 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.

#include "components/performance_manager/graph/node_attached_data_storage.h"

#include <utility>

#include "base/check_op.h"

namespace performance_manager {

NodeAttachedDataStorage::NodeAttachedDataStorage() = default;

NodeAttachedDataStorage::NodeAttachedDataStorage(NodeAttachedDataStorage&&) =
    default;

NodeAttachedDataStorage& NodeAttachedDataStorage::operator=(
    NodeAttachedDataStorage&&) = default;

NodeAttachedDataStorage::~NodeAttachedDataStorage() = default;

void NodeAttachedDataStorage::AttachData(
    std::unique_ptr<NodeAttachedData> data) {}

NodeAttachedData* NodeAttachedDataStorage::GetData(const void* key) const {}

std::unique_ptr<NodeAttachedData> NodeAttachedDataStorage::DetachData(
    const void* key) {}

}  // namespace performance_manager