blob: 2f1240e0244fed0e65a8f7b3e5c5918aa5f5fcd1 [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.
interface Loader {
// Load the snapshot from the Vmo buffer payload.
1: Load(fuchsia.mem.Buffer payload);
};