chromium/components/optimization_guide/core/test_model_executor.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/optimization_guide/core/test_model_executor.h"

namespace optimization_guide {

void TestModelExecutor::SendForExecution(ExecutionCallback callback_on_complete,
                                         base::TimeTicks start_time,
                                         const std::vector<float>& args) {}

void TestModelExecutor::SendForBatchExecution(
    BatchExecutionCallback callback_on_complete,
    base::TimeTicks start_time,
    const std::vector<std::vector<float>>& args) {}

std::vector<std::optional<std::vector<float>>>
TestModelExecutor::SendForBatchExecutionSync(
    const std::vector<std::vector<float>>& args) {}

}  // namespace optimization_guide