17 lines
516 B
C++
17 lines
516 B
C++
// Copyright 2022 The Chromium Embedded Framework Authors. Portions copyright
|
|
// 2011 The Chromium Authors. All rights reserved. Use of this source code is
|
|
// governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef CEF_LIBCEF_COMMON_UTIL_LINUX_H_
|
|
#define CEF_LIBCEF_COMMON_UTIL_LINUX_H_
|
|
#pragma once
|
|
|
|
namespace util_linux {
|
|
|
|
// Called from MainDelegate::PreSandboxStartup for the main process.
|
|
void PreSandboxStartup();
|
|
|
|
} // namespace util_linux
|
|
|
|
#endif // CEF_LIBCEF_COMMON_UTIL_LINUX_H_
|