// 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 "components/history_embeddings/mock_answerer.h" #include "base/task/sequenced_task_runner.h" #include "components/optimization_guide/proto/features/history_answer.pb.h" namespace history_embeddings { MockAnswerer::MockAnswerer() = default; MockAnswerer::~MockAnswerer() = default; int64_t MockAnswerer::GetModelVersion() { … } void MockAnswerer::ComputeAnswer(std::string query, Context context, ComputeAnswerCallback callback) { … } } // namespace history_embeddings