chromium/content/common/zygote/zygote_handle_linux.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// Intentionally leaked.
ZygoteCommunication* g_generic_zygote =;
ZygoteCommunication* g_unsandboxed_zygote =;

}  // namespace

ZygoteCommunication* CreateGenericZygote(ZygoteLaunchCallback launch_cb) {}

ZygoteCommunication* GetGenericZygote() {}

ZygoteCommunication* CreateUnsandboxedZygote(ZygoteLaunchCallback launch_cb) {}

ZygoteCommunication* GetUnsandboxedZygote() {}

}  // namespace content