Chromium Code Reviews| Index: remoting/proto/process_stats.proto |
| diff --git a/remoting/proto/process_stats.proto b/remoting/proto/process_stats.proto |
| index 77d9c8fe94290ba997dfcd20f18a56a43bf8568c..1aead99edc04bc9cd242d948335b8778a3e7eadd 100644 |
| --- a/remoting/proto/process_stats.proto |
| +++ b/remoting/proto/process_stats.proto |
| @@ -31,16 +31,16 @@ message ProcessResourceUsage { |
| // Next Id: 6 |
| message AggregatedProcessResourceUsage { |
| // A friendly name of the processes current instance aggregated from. |
| - optional string name = 1; |
| + optional string name = 1 [deprecated=true]; |
|
joedow
2017/06/30 15:13:43
Instead of marking these as deprecated, I think yo
Hzj_jie
2017/06/30 22:39:29
Done.
|
| // The total processor usage. |
| - optional double processor_usage = 2; |
| + optional double processor_usage = 2 [deprecated=true]; |
| // The total memory usage of working set. |
| - optional uint64 working_set_size = 3; |
| + optional uint64 working_set_size = 3 [deprecated=true]; |
| // The total memory usage of page file. |
| - optional uint64 pagefile_size = 4; |
| + optional uint64 pagefile_size = 4 [deprecated=true]; |
| // The process resource usage of each individual process. |
| repeated ProcessResourceUsage usages = 5; |