Index: components/mus/public/interfaces/surface.mojom |
diff --git a/components/mus/public/interfaces/surface.mojom b/components/mus/public/interfaces/surface.mojom |
deleted file mode 100644 |
index 2c531d3729c76a079b05a17c58370d4cb254cba7..0000000000000000000000000000000000000000 |
--- a/components/mus/public/interfaces/surface.mojom |
+++ /dev/null |
@@ -1,22 +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.mojom"; |
-import "cc/ipc/returned_resource.mojom"; |
- |
-// 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(cc.mojom.CompositorFrame frame) => (); |
-}; |
- |
-interface SurfaceClient { |
- ReturnResources(array<cc.mojom.ReturnedResource> resources); |
-}; |