// Copyright 2018 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. syntax = "proto2"; package zucchini.fuzzers; // NEXT_TAG = 3 message FilePair { // File to generate patch from or apply patch to. required bytes old_file = 1; // New file to generate patch or the patch to apply. required bytes new_or_patch_file = 2; }