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

Side by Side Diff: components/view_manager/public/interfaces/surfaces.mojom

Issue 1281663002: Mandoline: Allow submitting CompositorFrames directly to mojo::Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module mojo;
6
7 import "components/view_manager/public/interfaces/compositor_frame.mojom";
8
9 interface Surface {
10 // Request the id namespace for this connection. Fully qualified surface ids
11 // are the combination of the id_namespace for the connection that created the
12 // surface and the id_local component allocated by the caller.
13 GetIdNamespace() => (uint32 id_namespace);
14
15 // Sets a ResourceReturner that will receive unused resources.
16 SetResourceReturner(ResourceReturner returner);
17
18 // Creates a new surface with the given local identifier. Once a surface is
19 // created the caller may submit frames to it or destroy it using the local
20 // identifier. The caller can also produce a fully qualified surface id that
21 // can be embedded in frames produces by different connections.
22 CreateSurface(uint32 id_local);
23
24 // After the submitted frame is drawn for the first time, the surface will
25 // respond to the SubmitCompositorFrame message. Clients should use this
26 // acknowledgement to ratelimit frame submissions.
27 SubmitCompositorFrame(uint32 id_local, CompositorFrame frame) => ();
28 DestroySurface(uint32 id_local);
29 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698