// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_GPU_FENCE_HANDLE_H_ #define UI_GFX_GPU_FENCE_HANDLE_H_ #include "base/memory/ref_counted.h" #include "build/build_config.h" #include "ui/gfx/gfx_export.h" #if BUILDFLAG(IS_POSIX) #include "base/files/scoped_file.h" #endif #if BUILDFLAG(IS_FUCHSIA) #include <lib/zx/event.h> #endif #if BUILDFLAG(IS_WIN) #include "base/win/scoped_handle.h" #endif namespace gfx { // TODO(crbug.com/40728014): Make this a class instead of struct. struct GFX_EXPORT GpuFenceHandle { … }; } // namespace gfx #endif // UI_GFX_GPU_FENCE_HANDLE_H_