chromium/components/language/content/browser/ulp_language_code_locator/ulp_language_code_locator.h

// 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_ULP_LANGUAGE_CODE_LOCATOR_ULP_LANGUAGE_CODE_LOCATOR_H_
#define COMPONENTS_LANGUAGE_CONTENT_BROWSER_ULP_LANGUAGE_CODE_LOCATOR_ULP_LANGUAGE_CODE_LOCATOR_H_

#include <memory>
#include <string>
#include <vector>

#include "base/memory/raw_ptr.h"
#include "components/language/content/browser/language_code_locator.h"

class PrefRegistrySimple;
class PrefService;
class SerializedLanguageTree;

namespace language {

// A LanguageCodeLocator that returns languages contained in each of its
// provided quadtrees, in the order the quadtrees were provided to the
// constructor.
class UlpLanguageCodeLocator : public LanguageCodeLocator {};
}  // namespace language

#endif  // COMPONENTS_LANGUAGE_CONTENT_BROWSER_ULP_LANGUAGE_CODE_LOCATOR_ULP_LANGUAGE_CODE_LOCATOR_H_