blob: 00c4757ae3eb7b98621fb46c3195664ccba83160 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.scenic.snapshot;
using fuchsia.mem;
/// Snapshot loader exported by `ViewProvider` to load snapshots into views
/// created from it.
[Discoverable]
protocol Loader {
/// Load the snapshot from the Vmo buffer payload.
Load(fuchsia.mem.Buffer payload);
};