Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: components/mus/gpu/gpu_type_converters.h

Issue 1976703003: Impl mus::mojom::GpuService to enable using Chrome IPC version gpu CmdBuf in mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/mus/gpu/gpu_type_converters.h
diff --git a/components/mus/gpu/gpu_type_converters.h b/components/mus/gpu/gpu_type_converters.h
deleted file mode 100644
index c3424386c9509bb35eda526e7e40361eb2ab0019..0000000000000000000000000000000000000000
--- a/components/mus/gpu/gpu_type_converters.h
+++ /dev/null
@@ -1,80 +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_GPU_GPU_TYPE_CONVERTERS_H_
-#define COMPONENTS_MUS_GPU_GPU_TYPE_CONVERTERS_H_
-
-#include "build/build_config.h"
-#include "components/mus/public/interfaces/channel_handle.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 IPC {
-struct ChannelHandle;
-}
-
-namespace mojo {
-
-template <>
-struct TypeConverter<mus::mojom::ChannelHandlePtr, IPC::ChannelHandle> {
- static mus::mojom::ChannelHandlePtr Convert(const IPC::ChannelHandle& handle);
-};
-
-template <>
-struct TypeConverter<IPC::ChannelHandle, mus::mojom::ChannelHandlePtr> {
- static IPC::ChannelHandle Convert(const mus::mojom::ChannelHandlePtr& handle);
-};
-
-#if defined(USE_OZONE)
-template <>
-struct TypeConverter<mus::mojom::NativePixmapHandlePtr,
- gfx::NativePixmapHandle> {
- static mus::mojom::NativePixmapHandlePtr Convert(
- const gfx::NativePixmapHandle& handle);
-};
-
-template <>
-struct TypeConverter<gfx::NativePixmapHandle,
- mus::mojom::NativePixmapHandlePtr> {
- static gfx::NativePixmapHandle Convert(
- const mus::mojom::NativePixmapHandlePtr& handle);
-};
-#endif
-
-template <>
-struct TypeConverter<mus::mojom::GpuMemoryBufferIdPtr, gfx::GpuMemoryBufferId> {
- static mus::mojom::GpuMemoryBufferIdPtr Convert(
- const gfx::GpuMemoryBufferId& id);
-};
-
-template <>
-struct TypeConverter<gfx::GpuMemoryBufferId, mus::mojom::GpuMemoryBufferIdPtr> {
- static gfx::GpuMemoryBufferId Convert(
- const mus::mojom::GpuMemoryBufferIdPtr& id);
-};
-
-template <>
-struct TypeConverter<mus::mojom::GpuMemoryBufferHandlePtr,
- gfx::GpuMemoryBufferHandle> {
- static mus::mojom::GpuMemoryBufferHandlePtr Convert(
- const gfx::GpuMemoryBufferHandle& handle);
-};
-
-template <>
-struct TypeConverter<gfx::GpuMemoryBufferHandle,
- mus::mojom::GpuMemoryBufferHandlePtr> {
- static gfx::GpuMemoryBufferHandle Convert(
- const mus::mojom::GpuMemoryBufferHandlePtr& handle);
-};
-
-} // namespace mojo
-
-#endif // COMPONENTS_MUS_GPU_GPU_TYPE_CONVERTERS_H_

Powered by Google App Engine
This is Rietveld 408576698