#ifndef COMPONENTS_PERFORMANCE_MANAGER_RENDER_PROCESS_USER_DATA_H_
#define COMPONENTS_PERFORMANCE_MANAGER_RENDER_PROCESS_USER_DATA_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/supports_user_data.h"
#include "content/public/browser/render_process_host_observer.h"
namespace content {
class RenderProcessHost;
}
namespace performance_manager {
class ProcessNodeImpl;
class RenderProcessUserData : public base::SupportsUserData::Data,
public content::RenderProcessHostObserver { … };
}
#endif