Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(445)

Unified Diff: remoting/proto/process_stats.proto

Issue 2964613002: [Chromoting] Deprecate AggregatedProcessResourceUsage.* (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« remoting/host/process_stats_sender_unittest.cc ('K') | « remoting/host/process_stats_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698