blob: ae8457d94d58019780d55463d8be75415408cce0 [file] [log] [blame]
// 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 CHROME_BROWSER_TRANSLATE_TRANSLATE_RANKER_FACTORY_H_
#define CHROME_BROWSER_TRANSLATE_TRANSLATE_RANKER_FACTORY_H_
#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
namespace content {
class BrowserContext;
}
namespace translate {
class TranslateRanker;
class TranslateRankerFactory : public ProfileKeyedServiceFactory {
public:
static TranslateRankerFactory* GetInstance();
static translate::TranslateRanker* GetForBrowserContext(
content::BrowserContext* browser_context);
TranslateRankerFactory(const TranslateRankerFactory&) = delete;
TranslateRankerFactory& operator=(const TranslateRankerFactory&) = delete;
private:
friend base::NoDestructor<TranslateRankerFactory>;
TranslateRankerFactory();
~TranslateRankerFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
};
} // namespace translate
#endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_RANKER_FACTORY_H_