#ifndef COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_PROCESS_HOSTED_CONTENT_TYPES_AGGREGATOR_H_
#define COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_PROCESS_HOSTED_CONTENT_TYPES_AGGREGATOR_H_
#include "components/performance_manager/public/graph/frame_node.h"
#include "components/performance_manager/public/graph/graph.h"
#include "components/performance_manager/public/graph/page_node.h"
#include "components/performance_manager/public/graph/worker_node.h"
namespace performance_manager {
class ProcessHostedContentTypesAggregator
: public GraphOwnedDefaultImpl,
public PageNode::ObserverDefaultImpl,
public FrameNode::ObserverDefaultImpl,
public WorkerNode::ObserverDefaultImpl { … };
}
#endif