chromium/sandbox/policy/linux/bpf_cros_virtio_gpu_policy_linux.cc

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

#include "sandbox/policy/linux/bpf_cros_virtio_gpu_policy_linux.h"

// Define these so that unistd.h pulls in needed symbols.
#if !defined(__ARCH_WANT_SYSCALL_NO_AT) || \
    !defined(__ARCH_WANT_SYSCALL_DEPRECATED)
#define __ARCH_WANT_SYSCALL_NO_AT
#define __ARCH_WANT_SYSCALL_DEPRECATED
#endif
#include <unistd.h>

#include "sandbox/linux/bpf_dsl/bpf_dsl.h"
#include "sandbox/linux/system_headers/linux_syscalls.h"

Allow;
ResultExpr;

namespace sandbox::policy {

CrosVirtIoGpuProcessPolicy::CrosVirtIoGpuProcessPolicy() = default;

CrosVirtIoGpuProcessPolicy::~CrosVirtIoGpuProcessPolicy() = default;

ResultExpr CrosVirtIoGpuProcessPolicy::EvaluateSyscall(int sysno) const {}

}  // namespace sandbox::policy