// 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 GPU_IPC_COMMON_VULKAN_INFO_MOJOM_TRAITS_H_ #define GPU_IPC_COMMON_VULKAN_INFO_MOJOM_TRAITS_H_ #include <string_view> #include "gpu/config/vulkan_info.h" #include "gpu/ipc/common/vulkan_info.mojom-shared.h" #include "gpu/ipc/common/vulkan_types_mojom_traits.h" namespace mojo { template <> struct StructTraits<gpu::mojom::VulkanPhysicalDeviceInfoDataView, gpu::VulkanPhysicalDeviceInfo> { … }; template <> struct StructTraits<gpu::mojom::VulkanInfoDataView, gpu::VulkanInfo> { … }; } // namespace mojo #endif // GPU_IPC_COMMON_VULKAN_INFO_MOJOM_TRAITS_H_