chromium/components/performance_manager/process_node_source.h

// Copyright 2019 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_PROCESS_NODE_SOURCE_H_
#define COMPONENTS_PERFORMANCE_MANAGER_PROCESS_NODE_SOURCE_H_

namespace performance_manager {

class ProcessNodeImpl;

// Represents a source of existing process nodes that lives on the main thread.
// In practice, this is used by the worker watchers as an abstraction over the
// peformance_manager::RenderProcessUserData to make testing easier.
class ProcessNodeSource {};

}  // namespace performance_manager

#endif  // COMPONENTS_PERFORMANCE_MANAGER_PROCESS_NODE_SOURCE_H_