blob: cd455a8ae678cfa6eb0a1c9fb8a1c1acf266db43 [file] [log] [blame]
// Copyright 2020 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 COMPONENTS_UPDATE_CLIENT_CRX_DOWNLOADER_FACTORY_H_
#define COMPONENTS_UPDATE_CLIENT_CRX_DOWNLOADER_FACTORY_H_
#include "base/memory/ref_counted.h"
namespace update_client {
class CrxDownloader;
class NetworkFetcherFactory;
// Creates instances of |CrxDownloader|. Callers of update client can implement
// a factory that provides a different download stack for CRXs. Currently,
// the factory is injected using a |Configurator| function.
class CrxDownloaderFactory
: public base::RefCountedThreadSafe<CrxDownloaderFactory> {
public:
CrxDownloaderFactory(const CrxDownloaderFactory&) = delete;
CrxDownloaderFactory& operator=(const CrxDownloaderFactory&) = delete;
virtual scoped_refptr<CrxDownloader> MakeCrxDownloader(
bool background_download_enabled) const = 0;
protected:
friend class base::RefCountedThreadSafe<CrxDownloaderFactory>;
CrxDownloaderFactory() = default;
virtual ~CrxDownloaderFactory() = default;
};
scoped_refptr<CrxDownloaderFactory> MakeCrxDownloaderFactory(
scoped_refptr<NetworkFetcherFactory> network_fetcher_factory);
} // namespace update_client
#endif // COMPONENTS_UPDATE_CLIENT_CRX_DOWNLOADER_FACTORY_H_