// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_ #define CONTENT_PUBLIC_BROWSER_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_ #include "content/common/content_export.h" #include "url/origin.h" namespace content { // Interface for managing reduced accept languages. It depends on existing // language prefs service to get user's accept-language list to help the // language negotiation process. class CONTENT_EXPORT ReduceAcceptLanguageControllerDelegate { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_