blob: fbb01a13a0741f460a642072763a0a25c2d56a1a [file] [log] [blame]
// Copyright 2018 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 CHROME_BROWSER_IMAGE_FETCHER_IMAGE_FETCHER_SERVICE_FACTORY_H_
#define CHROME_BROWSER_IMAGE_FETCHER_IMAGE_FETCHER_SERVICE_FACTORY_H_
#include <memory>
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/core/simple_keyed_service_factory.h"
class SimpleFactoryKey;
namespace image_fetcher {
class ImageFetcherService;
} // namespace image_fetcher
// Factory to create one CachedImageFetcherService per browser context.
class ImageFetcherServiceFactory : public SimpleKeyedServiceFactory {
public:
// Return the cache path for the given profile.
static base::FilePath GetCachePath(SimpleFactoryKey* key);
static image_fetcher::ImageFetcherService* GetForKey(SimpleFactoryKey* key);
static ImageFetcherServiceFactory* GetInstance();
private:
friend struct base::DefaultSingletonTraits<ImageFetcherServiceFactory>;
ImageFetcherServiceFactory();
~ImageFetcherServiceFactory() override;
// SimpleKeyedServiceFactory:
std::unique_ptr<KeyedService> BuildServiceInstanceFor(
SimpleFactoryKey* key) const override;
SimpleFactoryKey* GetKeyToUse(SimpleFactoryKey* key) const override;
DISALLOW_COPY_AND_ASSIGN(ImageFetcherServiceFactory);
};
#endif // CHROME_BROWSER_IMAGE_FETCHER_IMAGE_FETCHER_SERVICE_FACTORY_H_