// Copyright 2017 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_ASSIST_RANKER_SERVICE_H_ #define COMPONENTS_ASSIST_RANKER_ASSIST_RANKER_SERVICE_H_ #include "base/memory/weak_ptr.h" #include "components/keyed_service/core/keyed_service.h" namespace assist_ranker { class BinaryClassifierPredictor; struct PredictorConfig; // Service that provides Predictor objects. class AssistRankerService : public KeyedService { … }; } // namespace assist_ranker #endif // COMPONENTS_ASSIST_RANKER_ASSIST_RANKER_SERVICE_H_