| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Protocol buffer definitions for Syncable FileSystem. | 5 // Protocol buffer definitions for Syncable FileSystem. |
| 6 | 6 |
| 7 syntax = "proto2"; | 7 syntax = "proto2"; |
| 8 | 8 |
| 9 option optimize_for = LITE_RUNTIME; | |
| 10 | |
| 11 package sync_file_system; | 9 package sync_file_system; |
| 12 | 10 |
| 13 message DriveMetadata { | 11 message DriveMetadata { |
| 14 required string resource_id = 1; | 12 required string resource_id = 1; |
| 15 required string md5_checksum = 2; | 13 required string md5_checksum = 2; |
| 16 } | 14 } |
| OLD | NEW |