#ifndef CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_
#define CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include "base/auto_reset.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/task/single_thread_task_runner.h"
#include "content/common/buildflags.h"
#include "content/common/content_export.h"
#include "content/public/child/child_thread.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_proto.h"
namespace base {
class UnguessableToken;
class WaitableEvent;
}
namespace blink {
struct UserAgentMetadata;
namespace scheduler {
enum class WebRendererProcessType;
}
}
namespace perfetto::protos::pbzero {
class RenderProcessHost;
}
namespace IPC {
class Listener;
#if BUILDFLAG(CONTENT_ENABLE_LEGACY_IPC)
class MessageFilter;
#endif
class SyncChannel;
class SyncMessageFilter;
}
namespace content {
class RenderThreadObserver;
class CONTENT_EXPORT RenderThread : virtual public ChildThread { … };
}
#endif