#ifndef COMPONENTS_LANGUAGE_CORE_BROWSER_LANGUAGE_PREFS_H_
#define COMPONENTS_LANGUAGE_CORE_BROWSER_LANGUAGE_PREFS_H_
#include <set>
#include <string>
#include <string_view>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "components/prefs/pref_change_registrar.h"
class PrefService;
namespace base {
class Value;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
class PrefService;
namespace language {
extern const char kFallbackInputMethodLocale[];
class LanguagePrefs { … };
void ResetLanguagePrefs(PrefService* prefs);
std::string GetFirstLanguage(std::string_view language_list);
}
#endif