blob: 782a6f19056b26fe1d504013b1872cde9ee152f8 [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;
[Discoverable]
// Snapshot loader exported by |ViewProvider| to load snapshots into views
// created from it.
protocol Loader {
// Load the snapshot from the Vmo buffer payload.
Load(fuchsia.mem.Buffer payload);
};