blob: 8d99f6f1bb0e6204a821bd2636b17cb9cddfc9f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) 2012 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.
//
// Protocol buffer definitions for Syncable FileSystem.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package sync_file_system;
message DriveMetadata {
required string resource_id = 1;
required string md5_checksum = 2;
required bool conflicted = 3;
// When true, indicates that the remote file identified by |resource_id|
// should be fetched for solving the conflict (resolve-to-remote resolution).
required bool to_be_fetched = 4;
}
|