// Copyright 2014 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_BROWSER_ACCEPT_LANGUAGES_SERVICE_H_ #define COMPONENTS_LANGUAGE_CORE_BROWSER_ACCEPT_LANGUAGES_SERVICE_H_ #include <set> #include <string> #include <string_view> #include "components/keyed_service/core/keyed_service.h" #include "components/prefs/pref_change_registrar.h" class PrefService; namespace language { // AcceptLanguagesService tracks the value of the "Accept-Language" HTTP // header. class AcceptLanguagesService : public KeyedService { … }; } // namespace language #endif // COMPONENTS_LANGUAGE_CORE_BROWSER_ACCEPT_LANGUAGES_SERVICE_H_