#ifndef CHROME_BROWSER_TASK_MANAGER_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
#define CHROME_BROWSER_TASK_MANAGER_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
#include <stdint.h>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/task_manager/providers/task.h"
#include "components/favicon/core/favicon_driver_observer.h"
class ProcessResourceUsage;
namespace content {
class RenderFrameHost;
class RenderProcessHost;
class WebContents;
}
namespace task_manager {
class RendererTask : public Task,
public favicon::FaviconDriverObserver { … };
}
#endif