aboutsummaryrefslogtreecommitdiff
path: root/fuzzers/file_pair.proto
blob: 22163819933e594820f8c8c768c614db15b4a632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;
}