Chromium Code Reviews| Index: chrome/browser/sync_file_system/sync_file_system.proto |
| diff --git a/chrome/browser/sync_file_system/sync_file_system.proto b/chrome/browser/sync_file_system/sync_file_system.proto |
| index 8d99f6f1bb0e6204a821bd2636b17cb9cddfc9f1..b6b3a63dd68e6e814d17a611f310cfe7c40065a6 100644 |
| --- a/chrome/browser/sync_file_system/sync_file_system.proto |
| +++ b/chrome/browser/sync_file_system/sync_file_system.proto |
| @@ -18,4 +18,11 @@ message DriveMetadata { |
| // 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; |
| + |
| + enum ResourceType { |
| + FILE = 0; |
| + FOLDER = 1; |
|
tzik
2013/04/16 15:02:49
RESOURCE_TYPE_FILE and RESOURCE_TYPE_FOLDER for be
nhiroki
2013/04/17 02:24:51
Done.
|
| + } |
| + |
| + optional ResourceType type = 5 [default = FILE]; |
| } |