#ifndef CHROME_BROWSER_PERFORMANCE_MANAGER_USER_TUNING_USER_PERFORMANCE_TUNING_NOTIFIER_H_
#define CHROME_BROWSER_PERFORMANCE_MANAGER_USER_TUNING_USER_PERFORMANCE_TUNING_NOTIFIER_H_
#include <memory>
#include "components/performance_manager/public/decorators/process_metrics_decorator.h"
#include "components/performance_manager/public/graph/graph.h"
#include "components/performance_manager/public/graph/page_node.h"
#include "components/performance_manager/public/graph/system_node.h"
namespace performance_manager::user_tuning {
class UserPerformanceTuningNotifier : public performance_manager::GraphOwned,
public PageNode::ObserverDefaultImpl,
public SystemNode::ObserverDefaultImpl { … };
}
#endif