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

Unified Diff: services/ui/public/interfaces/gpu_service.mojom

Issue 2559343003: mus: Rename GpuService to Gpu. (Closed)
Patch Set: . Created 4 years 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
« no previous file with comments | « services/ui/public/interfaces/gpu.mojom ('k') | services/ui/service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/public/interfaces/gpu_service.mojom
diff --git a/services/ui/public/interfaces/gpu_service.mojom b/services/ui/public/interfaces/gpu_service.mojom
deleted file mode 100644
index c9844c9ccc7056d549e9ea4355336f9d1be4c0f7..0000000000000000000000000000000000000000
--- a/services/ui/public/interfaces/gpu_service.mojom
+++ /dev/null
@@ -1,31 +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 ui.mojom;
-
-import "gpu/ipc/common/gpu_info.mojom";
-import "gpu/ipc/common/sync_token.mojom";
-import "ui/gfx/geometry/mojo/geometry.mojom";
-import "ui/gfx/mojo/buffer_types.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,
- handle<message_pipe>? channel_handle,
- gpu.mojom.GpuInfo gpu_info);
-
- // Tells the GPU service to create a new GPU memory buffer.
- CreateGpuMemoryBuffer(gfx.mojom.GpuMemoryBufferId id,
- gfx.mojom.Size size,
- gfx.mojom.BufferFormat format,
- gfx.mojom.BufferUsage usage)
- => (gfx.mojom.GpuMemoryBufferHandle buffer_handle);
-
- // Tells the GPU process to destroy GPU memory buffer.
- DestroyGpuMemoryBuffer(gfx.mojom.GpuMemoryBufferId id,
- gpu.mojom.SyncToken sync_token);
-};
« no previous file with comments | « services/ui/public/interfaces/gpu.mojom ('k') | services/ui/service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698