blob: 18312897847da4e6b0d5419352021dfbcf9f98c8 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_
#define CHROME_BROWSER_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_
#include <stdint.h>
namespace performance_manager {
enum class NodeTypeEnum : uint8_t {
kInvalidType,
kFrame,
kPage,
kProcess,
kSystem,
kWorker,
};
} // namespace performance_manager
#endif // CHROME_BROWSER_PERFORMANCE_MANAGER_GRAPH_NODE_TYPE_H_