| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Sync protocol datatype extension for the reading list items. | 5 // Sync protocol datatype extension for the reading list items. |
| 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 25 matching lines...) Expand all Loading... |
| 36 PROCESSING = 1; | 36 PROCESSING = 1; |
| 37 PROCESSED = 2; | 37 PROCESSED = 2; |
| 38 WILL_RETRY = 3; | 38 WILL_RETRY = 3; |
| 39 ERROR = 4; | 39 ERROR = 4; |
| 40 } | 40 } |
| 41 optional DistillationState distillation_state = 7; | 41 optional DistillationState distillation_state = 7; |
| 42 optional string distilled_path = 8; | 42 optional string distilled_path = 8; |
| 43 optional int64 failed_download_counter = 9; | 43 optional int64 failed_download_counter = 9; |
| 44 optional string backoff = 10; | 44 optional string backoff = 10; |
| 45 } | 45 } |
| OLD | NEW |