// Copyright 2018 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_CONTENT_BROWSER_GEO_LANGUAGE_MODEL_H_ #define COMPONENTS_LANGUAGE_CONTENT_BROWSER_GEO_LANGUAGE_MODEL_H_ #include "base/memory/raw_ptr.h" #include "components/language/core/browser/language_model.h" namespace language { class GeoLanguageProvider; // A language model that uses the GeoLanguageProvider to determine the // languages the user is likely to understand based on their geographic // location. class GeoLanguageModel : public LanguageModel { … }; } // namespace language #endif // COMPONENTS_LANGUAGE_CONTENT_BROWSER_GEO_LANGUAGE_MODEL_H_