chromium/chrome/services/on_device_translation/translate_kit_wrapper.cc

// 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 "chrome/services/on_device_translation/translate_kit_wrapper.h"

#include <optional>

#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/strings/strcat.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "chrome/services/on_device_translation/public/cpp/features.h"

namespace on_device_translation {

TranslateKitWrapper::TranslateKitWrapper() = default;

TranslateKitWrapper::~TranslateKitWrapper() = default;

// static
void TranslateKitWrapper::GetInstance(
    base::OnceCallback<void(TranslateKitWrapper*)> callback) {}

std::optional<TranslateFunc> TranslateKitWrapper::GetTranslateFunc(
    const std::string& source_lang,
    const std::string& target_lang) {}

bool TranslateKitWrapper::CanTranslate(const std::string& source_lang,
                                       const std::string& target_lang) {}

void TranslateKitWrapper::Load(
    base::OnceCallback<void(TranslateKitWrapper*)> callback) {}

std::optional<base::FilePath>
TranslateKitWrapper::GetTranslateKitLibraryBasePath() {}

std::optional<base::FilePath>
TranslateKitWrapper::GetTranslateKitLibraryPath() {}

std::optional<base::FilePath>
TranslateKitWrapper::GetTranslateLibraryRunFilesPath() {}

void TranslateKitWrapper::LoadTranslateKit() {}

}  // namespace on_device_translation