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 // Histogram-collected metrics. | 5 // Histogram-collected metrics. |
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 // This field was intended to provide extra redundancy to detect corrupted | 36 // This field was intended to provide extra redundancy to detect corrupted |
37 // records, but was never used. As of M31, it is no longer sent by Chrome | 37 // records, but was never used. As of M31, it is no longer sent by Chrome |
38 // clients to reduce the UMA upload size. | 38 // clients to reduce the UMA upload size. |
39 optional int32 bucket_index = 3 [deprecated = true]; | 39 optional int32 bucket_index = 3 [deprecated = true]; |
40 | 40 |
41 // The number of entries in this bucket. | 41 // The number of entries in this bucket. |
42 optional int64 count = 4; | 42 optional int64 count = 4; |
43 } | 43 } |
44 repeated Bucket bucket = 3; | 44 repeated Bucket bucket = 3; |
45 } | 45 } |
OLD | NEW |