chromium/services/webnn/public/cpp/context_properties.cc

// 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.

#include "services/webnn/public/cpp/context_properties.h"

namespace webnn {

ContextProperties::ContextProperties(mojo::DefaultConstruct::Tag tag)
    :{}

ContextProperties::ContextProperties(InputOperandLayout input_operand_layout,
                                     Resample2DAxes resample_2d_axes,
                                     DataTypeLimits data_type_limits)
    :{}

ContextProperties::ContextProperties(const ContextProperties&) = default;
ContextProperties& ContextProperties::operator=(const ContextProperties&) =
    default;
ContextProperties::ContextProperties(ContextProperties&&) noexcept = default;
ContextProperties& ContextProperties::operator=(ContextProperties&&) noexcept =
    default;

ContextProperties::~ContextProperties() = default;

}  // namespace webnn