Index: components/mus/common/gpu_type_converters.h |
diff --git a/components/mus/common/gpu_type_converters.h b/components/mus/common/gpu_type_converters.h |
deleted file mode 100644 |
index 74c170c04378f07bae73ec79831da88c61bdccf1..0000000000000000000000000000000000000000 |
--- a/components/mus/common/gpu_type_converters.h |
+++ /dev/null |
@@ -1,95 +0,0 @@ |
-// Copyright 2016 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef COMPONENTS_MUS_COMMON_GPU_TYPE_CONVERTERS_H_ |
-#define COMPONENTS_MUS_COMMON_GPU_TYPE_CONVERTERS_H_ |
- |
-#include "build/build_config.h" |
-#include "components/mus/common/mus_common_export.h" |
-#include "components/mus/public/interfaces/channel_handle.mojom.h" |
-#include "components/mus/public/interfaces/gpu.mojom.h" |
-#include "components/mus/public/interfaces/gpu_memory_buffer.mojom.h" |
-#include "mojo/public/cpp/bindings/type_converter.h" |
- |
-namespace gfx { |
-struct GpuMemoryBufferHandle; |
-class GenericSharedMemoryId; |
-using GpuMemoryBufferId = GenericSharedMemoryId; |
-struct NativePixmapHandle; |
-} |
- |
-namespace gpu { |
-struct GPUInfo; |
-} |
- |
-namespace IPC { |
-struct ChannelHandle; |
-} |
- |
-namespace mojo { |
- |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<mus::mojom::ChannelHandlePtr, IPC::ChannelHandle> { |
- static mus::mojom::ChannelHandlePtr Convert(const IPC::ChannelHandle& handle); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<IPC::ChannelHandle, mus::mojom::ChannelHandlePtr> { |
- static IPC::ChannelHandle Convert(const mus::mojom::ChannelHandlePtr& handle); |
-}; |
- |
-#if defined(USE_OZONE) |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<mus::mojom::NativePixmapHandlePtr, gfx::NativePixmapHandle> { |
- static mus::mojom::NativePixmapHandlePtr Convert( |
- const gfx::NativePixmapHandle& handle); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<gfx::NativePixmapHandle, mus::mojom::NativePixmapHandlePtr> { |
- static gfx::NativePixmapHandle Convert( |
- const mus::mojom::NativePixmapHandlePtr& handle); |
-}; |
-#endif |
- |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<mus::mojom::GpuMemoryBufferIdPtr, gfx::GpuMemoryBufferId> { |
- static mus::mojom::GpuMemoryBufferIdPtr Convert( |
- const gfx::GpuMemoryBufferId& id); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT |
- TypeConverter<gfx::GpuMemoryBufferId, mus::mojom::GpuMemoryBufferIdPtr> { |
- static gfx::GpuMemoryBufferId Convert( |
- const mus::mojom::GpuMemoryBufferIdPtr& id); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT TypeConverter<mus::mojom::GpuMemoryBufferHandlePtr, |
- gfx::GpuMemoryBufferHandle> { |
- static mus::mojom::GpuMemoryBufferHandlePtr Convert( |
- const gfx::GpuMemoryBufferHandle& handle); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT TypeConverter<gfx::GpuMemoryBufferHandle, |
- mus::mojom::GpuMemoryBufferHandlePtr> { |
- static gfx::GpuMemoryBufferHandle Convert( |
- const mus::mojom::GpuMemoryBufferHandlePtr& handle); |
-}; |
- |
-template <> |
-struct MUS_COMMON_EXPORT TypeConverter<mus::mojom::GpuInfoPtr, gpu::GPUInfo> { |
- static mus::mojom::GpuInfoPtr Convert(const gpu::GPUInfo& input); |
-}; |
- |
-} // namespace mojo |
- |
-#endif // COMPONENTS_MUS_COMMON_GPU_TYPE_CONVERTERS_H_ |