// 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_DECORATORS_PROCESS_PRIORITY_AGGREGATOR_DATA_H_ #define COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_PROCESS_PRIORITY_AGGREGATOR_DATA_H_ #include "base/task/task_traits.h" #include "base/values.h" #include "components/performance_manager/graph/node_inline_data.h" namespace performance_manager { // This class is attached to process nodes using NodeInlineData. class ProcessPriorityAggregatorData : public NodeInlineData<ProcessPriorityAggregatorData> { … }; } // namespace performance_manager #endif // COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_PROCESS_PRIORITY_AGGREGATOR_DATA_H_