// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_WEBNN_PUBLIC_CPP_OPERAND_DESCRIPTOR_H_ #define SERVICES_WEBNN_PUBLIC_CPP_OPERAND_DESCRIPTOR_H_ #include <vector> #include "base/component_export.h" #include "base/containers/span.h" #include "base/types/expected.h" #include "mojo/public/cpp/bindings/default_construct_tag.h" namespace webnn { enum class OperandDataType { … }; class COMPONENT_EXPORT(WEBNN_PUBLIC_CPP) OperandDescriptor { … }; } // namespace webnn #endif // SERVICES_WEBNN_PUBLIC_CPP_OPERAND_DESCRIPTOR_H_