OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 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 cc.mojom; |
| 6 |
| 7 import "gpu/ipc/common/sync_token.mojom"; |
| 8 |
| 9 // This interface behaves similar to ReleaseCallback but works across process |
| 10 // boundaries. Once Release is called, it releases the TextureMailbox that it |
| 11 // is associated with. |
| 12 interface TextureMailboxReleaser { |
| 13 Release(gpu.mojom.SyncToken sync_token, bool is_lost); |
| 14 }; |
OLD | NEW |