blob: ab0be5b95618872a64fcc1734f06c6519525a7c6 [file] [log] [blame]
// Copyright 2017 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.
module patch.mojom;
import "mojo/public/mojom/base/file.mojom";
interface FilePatcher {
// Patch |input_file| with |patch_file| using the bsdiff algorithm
// (Courgette's version) and place the output in |output_file|.
// Returns |result| bsdiff::BSDiffStatus::OK on success.
PatchFileBsdiff(
mojo_base.mojom.File input_file,
mojo_base.mojom.File patch_file,
mojo_base.mojom.File output_file) => (int32 result);
// Patch |input_file| with |patch_file| using the Courgette algorithm
// and place the output in |output_file|.
// Returns |result| courgette::Status::C_OK on success.
PatchFileCourgette(
mojo_base.mojom.File input_file,
mojo_base.mojom.File patch_file,
mojo_base.mojom.File output_file) => (int32 result);
};