chromium/components/language/core/language_model/ulp_language_model.h

// 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.

#ifndef COMPONENTS_LANGUAGE_CORE_LANGUAGE_MODEL_ULP_LANGUAGE_MODEL_H_
#define COMPONENTS_LANGUAGE_CORE_LANGUAGE_MODEL_ULP_LANGUAGE_MODEL_H_

#include <string>
#include <vector>

#include "components/language/core/browser/language_model.h"

namespace language {

// A language model that returns the user's top ULP language preferences.
class ULPLanguageModel : public LanguageModel {};

}  // namespace language

#endif  // COMPONENTS_LANGUAGE_CORE_LANGUAGE_MODEL_ULP_LANGUAGE_MODEL_H_