OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package extensions.core_api.cast_channel.proto; | 9 package extensions.core_api.cast_channel.proto; |
10 | 10 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 message Log { | 140 message Log { |
141 // Each AggregatedSocketEvent represents events recorded for a socket. | 141 // Each AggregatedSocketEvent represents events recorded for a socket. |
142 repeated AggregatedSocketEvent aggregated_socket_event = 1; | 142 repeated AggregatedSocketEvent aggregated_socket_event = 1; |
143 | 143 |
144 // Number of socket log entries evicted by the logger due to size constraints. | 144 // Number of socket log entries evicted by the logger due to size constraints. |
145 optional int32 num_evicted_aggregated_socket_events = 2; | 145 optional int32 num_evicted_aggregated_socket_events = 2; |
146 | 146 |
147 // Number of event log entries evicted by the logger due to size constraints. | 147 // Number of event log entries evicted by the logger due to size constraints. |
148 optional int32 num_evicted_socket_events = 3; | 148 optional int32 num_evicted_socket_events = 3; |
149 } | 149 } |
OLD | NEW |