#ifndef COMPONENTS_LANGUAGE_DETECTION_CORE_LANGUAGE_DETECTION_RESOLVER_H_
#define COMPONENTS_LANGUAGE_DETECTION_CORE_LANGUAGE_DETECTION_RESOLVER_H_
#include <memory>
#include "components/language_detection/core/embedding_lookup.h"
#include "components/language_detection/core/ngram_hash.h"
#include "third_party/tflite/src/tensorflow/lite/kernels/builtin_op_kernels.h"
#include "third_party/tflite/src/tensorflow/lite/op_resolver.h"
namespace language_detection {
std::unique_ptr<tflite::MutableOpResolver> CreateLangIdResolver() { … }
}
#endif