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

Unified Diff: components/mus/public/interfaces/gpu_service.mojom

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 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/public/interfaces/gpu_service.mojom
diff --git a/components/mus/public/interfaces/gpu_service.mojom b/components/mus/public/interfaces/gpu_service.mojom
deleted file mode 100644
index 64ad2d1b9f024ef6a82b2fcead63511e3de19c28..0000000000000000000000000000000000000000
--- a/components/mus/public/interfaces/gpu_service.mojom
+++ /dev/null
@@ -1,32 +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.
-
-module mus.mojom;
-
-import "components/mus/public/interfaces/channel_handle.mojom";
-import "components/mus/public/interfaces/gpu.mojom";
-import "components/mus/public/interfaces/gpu_memory_buffer.mojom";
-import "gpu/ipc/common/sync_token.mojom";
-import "ui/gfx/geometry/mojo/geometry.mojom";
-
-interface GpuService {
- // Tells the GPU service to create a new channel for communication with a
- // client. The GPU service responds with client ID, IPC handle and
- // GPUInfo.
- [Sync]
- EstablishGpuChannel()
- => (int32 client_id, ChannelHandle channel_handle, GpuInfo gpu_info);
-
- // Tells the GPU service to create a new GPU memory buffer.
- CreateGpuMemoryBuffer(GpuMemoryBufferId id,
- gfx.mojom.Size size,
- BufferFormat format,
- BufferUsage usage,
- uint64 surface_id)
- => (GpuMemoryBufferHandle buffer_handle);
-
- // Tells the GPU process to destroy GPU memory buffer.
- DestroyGpuMemoryBuffer(GpuMemoryBufferId id,
- gpu.mojom.SyncToken sync_token);
-};
« no previous file with comments | « components/mus/public/interfaces/gpu_memory_buffer.mojom ('k') | components/mus/public/interfaces/input_devices/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698