#ifndef CONTENT_PUBLIC_COMMON_ZYGOTE_ZYGOTE_HANDLE_H_
#define CONTENT_PUBLIC_COMMON_ZYGOTE_ZYGOTE_HANDLE_H_
#include "base/command_line.h"
#include "base/files/scoped_file.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "content/public/common/zygote/zygote_buildflags.h"
#if !BUILDFLAG(IS_ARKWEB)
#if !BUILDFLAG(USE_ZYGOTE)
#error "Can not use zygote without USE_ZYGOTE"
#endif
#endif
namespace content {
#if BUILDFLAG(IS_POSIX)
class ZygoteCommunication;
#else
#error "Can not use zygote on this platform"
#endif
CONTENT_EXPORT ZygoteCommunication* GetGenericZygote();
}
#endif