// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_COMMON_ZYGOTE_ZYGOTE_FORK_DELEGATE_LINUX_H_ #define CONTENT_PUBLIC_COMMON_ZYGOTE_ZYGOTE_FORK_DELEGATE_LINUX_H_ #include <unistd.h> #include <string> #include <vector> // TODO(jln) base::TerminationStatus should be forward declared when switching // to C++11. #include "base/process/kill.h" namespace content { // The ZygoteForkDelegate allows the Chrome Linux zygote to delegate // fork operations to another class that knows how to do some // specialized version of fork. class ZygoteForkDelegate { … }; } // namespace content #endif // CONTENT_PUBLIC_COMMON_ZYGOTE_ZYGOTE_FORK_DELEGATE_LINUX_H_