| Index: components/mus/public/interfaces/compositor_frame.mojom
|
| diff --git a/components/mus/public/interfaces/compositor_frame.mojom b/components/mus/public/interfaces/compositor_frame.mojom
|
| deleted file mode 100644
|
| index d01f82915726116b316f07e02f8cb82b3c6f54e0..0000000000000000000000000000000000000000
|
| --- a/components/mus/public/interfaces/compositor_frame.mojom
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -// Copyright 2015 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 "cc/ipc/compositor_frame_metadata.mojom";
|
| -import "cc/ipc/quads.mojom";
|
| -import "cc/ipc/returned_resource.mojom";
|
| -import "cc/ipc/transferable_resource.mojom";
|
| -import "ui/gfx/geometry/mojo/geometry.mojom";
|
| -import "gpu/ipc/common/mailbox_holder.mojom";
|
| -import "gpu/ipc/common/sync_token.mojom";
|
| -
|
| -// See src/cc/output/compositor_frame.h.
|
| -struct CompositorFrame {
|
| - cc.mojom.CompositorFrameMetadata metadata;
|
| - array<cc.mojom.TransferableResource> resources;
|
| - array<cc.mojom.RenderPass> passes;
|
| -};
|
| -
|
| -// A Surface is an interface for receiving CompositorFrame structs. This is a
|
| -// separate interface to allow CompositorFrames to be delivered from
|
| -// supplementary (not main) threads of a mojo app.
|
| -interface Surface {
|
| - // After the submitted frame is drawn for the first time, the receiver will
|
| - // respond to the SubmitFrame message. Clients should use this acknowledgement
|
| - // to ratelimit frame submissions.
|
| - SubmitCompositorFrame(CompositorFrame frame) => ();
|
| -};
|
| -
|
| -interface SurfaceClient {
|
| - ReturnResources(array<cc.mojom.ReturnedResource> resources);
|
| -};
|
|
|