#ifndef CONTENT_PUBLIC_CHILD_CHILD_THREAD_H_
#define CONTENT_PUBLIC_CHILD_CHILD_THREAD_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "build/build_config.h"
#include "content/common/buildflags.h"
#include "content/common/content_export.h"
#include "ipc/ipc_sender.h"
#include "mojo/public/cpp/bindings/generic_pending_receiver.h"
#if BUILDFLAG(IS_WIN)
#include <windows.h>
#endif
namespace base {
class SingleThreadTaskRunner;
struct UserMetricsAction;
}
namespace content {
class CONTENT_EXPORT ChildThread
#if BUILDFLAG(CONTENT_ENABLE_LEGACY_IPC)
: public IPC::Sender
#endif
{ … };
}
#endif