| 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 serializing Drive files and directories. | 5 // Protocol buffer definitions for serializing Drive files and directories. |
| 6 | 6 |
| 7 syntax = "proto2"; | 7 syntax = "proto2"; |
| 8 | 8 |
| 9 option optimize_for = LITE_RUNTIME; | 9 option optimize_for = LITE_RUNTIME; |
| 10 | 10 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 139 |
| 140 // True if the file is a mounted archive file. | 140 // True if the file is a mounted archive file. |
| 141 optional bool is_mounted = 5; | 141 optional bool is_mounted = 5; |
| 142 | 142 |
| 143 // True if the file is in the persistent directory. | 143 // True if the file is in the persistent directory. |
| 144 optional bool is_persistent = 6; | 144 optional bool is_persistent = 6; |
| 145 | 145 |
| 146 // When adding a new state, be sure to update TestDriveCacheState and test | 146 // When adding a new state, be sure to update TestDriveCacheState and test |
| 147 // functions defined in drive_test_util.cc. | 147 // functions defined in drive_test_util.cc. |
| 148 } | 148 } |
| OLD | NEW |