#include "content/public/common/zygote/zygote_handle.h"
#include "base/command_line.h"
#include "content/common/zygote/zygote_communication_linux.h"
#include "content/common/zygote/zygote_handle_impl_linux.h"
#include "content/public/common/content_switches.h"
namespace content {
namespace {
ZygoteCommunication* g_generic_zygote = …;
ZygoteCommunication* g_unsandboxed_zygote = …;
}
ZygoteCommunication* CreateGenericZygote(ZygoteLaunchCallback launch_cb) { … }
ZygoteCommunication* GetGenericZygote() { … }
ZygoteCommunication* CreateUnsandboxedZygote(ZygoteLaunchCallback launch_cb) { … }
ZygoteCommunication* GetUnsandboxedZygote() { … }
}