| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 syntax = "proto3"; | 5 syntax = "proto3"; |
| 6 | 6 |
| 7 package logpb; | 7 package logpb; |
| 8 | 8 |
| 9 import "log.proto"; | 9 import "log.proto"; |
| 10 import "google/protobuf/timestamp.proto"; | 10 import "google/protobuf/timestamp.proto"; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 */ | 107 */ |
| 108 bool terminal = 3; | 108 bool terminal = 3; |
| 109 | 109 |
| 110 /* | 110 /* |
| 111 * If terminal is true, this is the terminal stream index; that is, the last | 111 * If terminal is true, this is the terminal stream index; that is, the last |
| 112 * message index in the stream. | 112 * message index in the stream. |
| 113 */ | 113 */ |
| 114 uint64 terminal_index = 4; | 114 uint64 terminal_index = 4; |
| 115 | 115 |
| 116 /* | 116 /* |
| 117 * Log entries attached to this record. These must be sequential and in | 117 * Log entries attached to this record. These MUST be sequential. |
| 118 * order. | |
| 119 * | 118 * |
| 120 * This is the main log entry content. | 119 * This is the main log entry content. |
| 121 */ | 120 */ |
| 122 repeated logpb.LogEntry logs = 5; | 121 repeated logpb.LogEntry logs = 5; |
| 123 } | 122 } |
| 124 | 123 |
| 125 /** | 124 /** |
| 126 * Each Entry is an individual set of log records for a given log stream. | 125 * Each Entry is an individual set of log records for a given log stream. |
| 127 */ | 126 */ |
| 128 repeated Entry entries = 3; | 127 repeated Entry entries = 3; |
| 129 } | 128 } |
| OLD | NEW |