// 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_PUBLIC_GRAPH_NODE_H_ #define COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_GRAPH_NODE_H_ #include <cstdint> #include "base/check_op.h" #include "components/performance_manager/public/graph/node_state.h" #include "components/performance_manager/public/graph/node_type.h" namespace performance_manager { class Graph; // Interface that all nodes must implement. class Node { … }; template <class PublicNodeClass> class TypedNode : public Node { … }; } // namespace performance_manager #endif // COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_GRAPH_NODE_H_