blob: 5adbb71d90d603590f33c0a1c3e6f7c07824a5e7 [file] [log] [blame]
// Copyright 2019 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_UPDATE_CLIENT_PATCH_PATCH_IMPL_H_
#define COMPONENTS_UPDATE_CLIENT_PATCH_PATCH_IMPL_H_
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "components/services/patch/public/mojom/file_patcher.mojom.h"
#include "components/update_client/patcher.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
namespace update_client {
class PatchChromiumFactory : public PatcherFactory {
public:
using Callback =
base::RepeatingCallback<mojo::PendingRemote<patch::mojom::FilePatcher>()>;
explicit PatchChromiumFactory(Callback callback);
PatchChromiumFactory(const PatchChromiumFactory&) = delete;
PatchChromiumFactory& operator=(const PatchChromiumFactory&) = delete;
scoped_refptr<Patcher> Create() const override;
protected:
~PatchChromiumFactory() override;
private:
const Callback callback_;
};
} // namespace update_client
#endif // COMPONENTS_UPDATE_CLIENT_PATCH_PATCH_IMPL_H_