node_type.h 544 B

1234567891011121314151617181920212223
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_
  5. #define COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_
  6. #include <stdint.h>
  7. namespace performance_manager {
  8. enum class NodeTypeEnum : uint8_t {
  9. kInvalidType,
  10. kFrame,
  11. kPage,
  12. kProcess,
  13. kSystem,
  14. kWorker,
  15. };
  16. } // namespace performance_manager
  17. #endif // COMPONENTS_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_