// 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_RESOURCE_TASK_H_ #define SERVICES_WEBNN_RESOURCE_TASK_H_ #include <vector> #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_refptr.h" #include "base/sequence_checker.h" namespace webnn { class QueueableResourceStateBase; // Represents a task performed against one or more `QueueableResourceState` // instances. See `QueueableResourceState` for more details. class ResourceTask : public base::RefCounted<ResourceTask> { … }; } // namespace webnn #endif // SERVICES_WEBNN_RESOURCE_TASK_H_