#ifndef COMPONENTS_SERVICES_PATCH_PUBLIC_CPP_PATCH_H_
#define COMPONENTS_SERVICES_PATCH_PUBLIC_CPP_PATCH_H_
#include "base/functional/callback_forward.h"
#include "components/services/patch/public/mojom/file_patcher.mojom.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
namespace patch {
void PuffPatch(mojo::PendingRemote<mojom::FilePatcher> file_patcher,
base::File input_abs_path,
base::File patch_abs_path,
base::File output_abs_path,
base::OnceCallback<void(int result)> callback);
}
#endif