chromium/services/webnn/tflite/buffer_content.h

// 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_TFLITE_BUFFER_CONTENT_H_
#define SERVICES_WEBNN_TFLITE_BUFFER_CONTENT_H_

#include "base/containers/span.h"
#include "base/memory/aligned_memory.h"

namespace webnn::tflite {

// The internal contents of an MLBuffer. Access should be managed by wrapping in
// a `QueueableResourceState`.
class BufferContent {};

}  // namespace webnn::tflite

#endif  // SERVICES_WEBNN_TFLITE_BUFFER_CONTENT_H_