blob: 9ab54a7e3bd6b6b452b17da778e992c2033843cf [file] [log] [blame]
// Copyright 2024 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.driver.metadata.test;
// Purpose of the driver that will bind to the node.
enum PURPOSE {
RETRIEVE_METADATA,
SEND_METADATA,
FORWARD_METADATA
};
// Whether or not the driver that binds to this node declares that it uses the metadata FIDL service
// in its component manifest.
bool USES_METADATA_FIDL_SERVICE;
// Whether or not the driver that binds to this node declares that it exposes the metadata FIDL
// service in its component manifest.
bool EXPOSES_METADATA_FIDL_SERVICE;