| Index: ui/gfx/gpu_fence.h
|
| diff --git a/ui/gfx/gpu_fence.h b/ui/gfx/gpu_fence.h
|
| index d0f9666cb60f325a1435019218cdc083d5edd5e8..3ce9d81390fe10f11b9ab22d8994c978c19a6087 100644
|
| --- a/ui/gfx/gpu_fence.h
|
| +++ b/ui/gfx/gpu_fence.h
|
| @@ -9,12 +9,19 @@
|
| #include "ui/gfx/gfx_export.h"
|
| #include "ui/gfx/shared_event.h"
|
|
|
| +#if defined(OS_LINUX)
|
| +#include "base/file_descriptor_posix.h"
|
| +#endif
|
| +
|
| extern "C" typedef struct _ClientFence* ClientFence;
|
|
|
| namespace gfx {
|
|
|
| struct GFX_EXPORT GpuFenceHandle {
|
| SharedEventHandle shared_event_handle;
|
| +#if defined(OS_LINUX)
|
| + base::FileDescriptor fd;
|
| +#endif
|
| };
|
|
|
| // This interface correspond to a type of fence that can be shared between
|
|
|