chromium/base/process/process_handle_linux.cc

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

#include "base/process/process_handle.h"

#include "base/files/file_util.h"
#include "base/numerics/safe_conversions.h"
#include "base/process/internal_linux.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_AIX)
#include "base/process/internal_aix.h"
#endif

namespace base {

ProcessId GetParentProcessId(ProcessHandle process) {}

FilePath GetProcessExecutablePath(ProcessHandle process) {}

}  // namespace base