// 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_CONTEXT_IMPL_TFLITE_H_ #define SERVICES_WEBNN_TFLITE_CONTEXT_IMPL_TFLITE_H_ #include "mojo/public/cpp/bindings/unique_associated_receiver_set.h" #include "services/webnn/webnn_context_impl.h" #include "services/webnn/webnn_graph_impl.h" namespace webnn::tflite { // `ContextImplTflite` is created by `WebNNContextProviderImpl` and responsible // for creating a `GraphImplTflite` which uses TFLite for inference. class ContextImplTflite final : public WebNNContextImpl { … }; } // namespace webnn::tflite #endif // SERVICES_WEBNN_TFLITE_CONTEXT_IMPL_TFLITE_H_