chromium/ui/ozone/platform/x11/vulkan_surface_x11.h

// Copyright 2019 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_OZONE_PLATFORM_X11_VULKAN_SURFACE_X11_H_
#define UI_OZONE_PLATFORM_X11_VULKAN_SURFACE_X11_H_

#include <vulkan/vulkan.h>

#include "gpu/vulkan/vulkan_surface.h"
#include "ui/gfx/x/connection.h"
#include "ui/gfx/x/event.h"

namespace x11 {
class ScopedEventSelector;
}

namespace ui {

class VulkanSurfaceX11 : public gpu::VulkanSurface, public x11::EventObserver {};

}  // namespace ui

#endif  // UI_OZONE_PLATFORM_X11_VULKAN_SURFACE_X11_H_