// 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_ASSIST_RANKER_CLASSIFIER_PREDICTOR_H_ #define COMPONENTS_ASSIST_RANKER_CLASSIFIER_PREDICTOR_H_ #include <memory> #include <vector> #include "components/assist_ranker/base_predictor.h" #include "components/assist_ranker/nn_classifier.h" #include "components/assist_ranker/proto/ranker_example.pb.h" namespace base { class FilePath; } namespace network { class SharedURLLoaderFactory; } namespace assist_ranker { // Predictor class for single-layer neural network models. class ClassifierPredictor : public BasePredictor { … }; } // namespace assist_ranker #endif // COMPONENTS_ASSIST_RANKER_CLASSIFIER_PREDICTOR_H_