chromium/components/services/language_detection/language_detection_service_impl.cc

// Copyright 2020 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/services/language_detection/language_detection_service_impl.h"

#include <string>

#include "base/strings/utf_string_conversions.h"
#include "components/translate/core/language_detection/language_detection_util.h"

namespace language_detection {

LanguageDetectionServiceImpl::LanguageDetectionServiceImpl(
    mojo::PendingReceiver<mojom::LanguageDetectionService> receiver)
    :{}

LanguageDetectionServiceImpl::~LanguageDetectionServiceImpl() = default;

void LanguageDetectionServiceImpl::DetermineLanguage(
    const ::std::u16string& text,
    DetermineLanguageCallback callback) {}

}  // namespace language_detection