blob: 5e295bc96f92038f91e8931932679c4eb935df54 [file] [log] [blame] [edit]
// Copyright 2019 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.
deprecated_syntax;
library fuchsia.tee.manager;
using fuchsia.io as io;
/// Provider provides service access and support to the TEE driver
/// for things like persistent storage, since the TEE may make upward RPC-like
/// requests to the REE.
[ForDeprecatedCBindings]
protocol Provider {
RequestPersistentStorage(request<io.Directory> dir);
};