blob: 924af31ea917039266b9fd1c38a73b8584370657 [file] [log] [blame]
// Copyright 2019 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_NET_NETWORK_CHROMIUM_H_
#define COMPONENTS_UPDATE_CLIENT_NET_NETWORK_CHROMIUM_H_
#include <memory>
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "components/update_client/network.h"
namespace network {
class SharedURLLoaderFactory;
}
namespace update_client {
using SendCookiesPredicate = base::RepeatingCallback<bool(const GURL& url)>;
class NetworkFetcherChromiumFactory : public NetworkFetcherFactory {
public:
NetworkFetcherChromiumFactory(
scoped_refptr<network::SharedURLLoaderFactory> shared_url_network_factory,
SendCookiesPredicate cookie_predicate);
NetworkFetcherChromiumFactory(const NetworkFetcherChromiumFactory&) = delete;
NetworkFetcherChromiumFactory& operator=(
const NetworkFetcherChromiumFactory&) = delete;
std::unique_ptr<NetworkFetcher> Create() const override;
protected:
~NetworkFetcherChromiumFactory() override;
private:
scoped_refptr<network::SharedURLLoaderFactory> shared_url_network_factory_;
SendCookiesPredicate cookie_predicate_;
};
} // namespace update_client
#endif // COMPONENTS_UPDATE_CLIENT_NET_NETWORK_CHROMIUM_H_