#ifndef COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_GRAPH_PAGE_NODE_H_
#define COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_GRAPH_PAGE_NODE_H_
#include <optional>
#include <ostream>
#include <string>
#include "base/containers/flat_set.h"
#include "base/observer_list_types.h"
#include "components/performance_manager/public/graph/node.h"
#include "components/performance_manager/public/graph/node_set_view.h"
#include "components/performance_manager/public/mojom/coordination_unit.mojom.h"
#include "components/performance_manager/public/mojom/lifecycle.mojom.h"
#include "components/performance_manager/public/resource_attribution/page_context.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "third_party/blink/public/common/permissions/permission_utils.h"
class GURL;
namespace content {
class WebContents;
}
namespace performance_manager {
class FrameNode;
class PageNodeObserver;
enum class PageType { … };
class PageNode : public TypedNode<PageNode> { … };
class PageNodeObserver : public base::CheckedObserver { … };
class PageNode::ObserverDefaultImpl : public PageNodeObserver { … };
std::ostream& operator<<(
std::ostream& os,
performance_manager::PageNode::EmbeddingType embedding_type);
}
#endif