| 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 syntax = "proto2"; | 4 syntax = "proto2"; |
| 5 | 5 |
| 6 package ts_mon.proto; | 6 package ts_mon.proto; |
| 7 | 7 |
| 8 import "any.proto"; | 8 import "any.proto"; |
| 9 import "timestamp.proto"; | 9 import "timestamp.proto"; |
| 10 import "acquisition_network_device.proto"; | 10 import "acquisition_network_device.proto"; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 DELTA = 2; | 119 DELTA = 2; |
| 120 } | 120 } |
| 121 | 121 |
| 122 enum ValueType { | 122 enum ValueType { |
| 123 BOOL = 0; | 123 BOOL = 0; |
| 124 STRING = 1; | 124 STRING = 1; |
| 125 INT64 = 2; | 125 INT64 = 2; |
| 126 DOUBLE = 3; | 126 DOUBLE = 3; |
| 127 DISTRIBUTION = 4; | 127 DISTRIBUTION = 4; |
| 128 } | 128 } |
| OLD | NEW |