blob: 3cc9ac66867d5cf30c514c55adaadb9139e90403 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_LANGUAGE_LANGUAGE_CODE_LOCATOR_H_
#define COMPONENTS_LANGUAGE_LANGUAGE_CODE_LOCATOR_H_
#include <string>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/macros.h"
namespace language {
class LanguageCodeLocator {
public:
LanguageCodeLocator();
~LanguageCodeLocator();
// Find the language code given a coordinate.
// If the latitude, longitude pair is not found, will return an empty vector.
std::vector<std::string> GetLanguageCode(double latitude,
double longitude) const;
private:
// Map from s2 cellid to ';' delimited list of language codes.
const base::flat_map<uint64_t, std::string> district_languages_;
DISALLOW_COPY_AND_ASSIGN(LanguageCodeLocator);
};
} // namespace language
#endif // COMPONENTS_LANGUAGE_LANGUAGE_CODE_LOCATOR_H_