Chromium Code Reviews| Index: chrome/browser/policy/proto/device_management_backend.proto |
| diff --git a/chrome/browser/policy/proto/device_management_backend.proto b/chrome/browser/policy/proto/device_management_backend.proto |
| index eb31ebf8a38d843bdc77d1834f4cc93140b43e20..8d715e4b1feeee05f0a054ce259dac0a1208874e 100644 |
| --- a/chrome/browser/policy/proto/device_management_backend.proto |
| +++ b/chrome/browser/policy/proto/device_management_backend.proto |
| @@ -229,6 +229,11 @@ message TimePeriod { |
| optional int64 end_timestamp = 2; |
| } |
| +message ActiveTimePeriod { |
| + optional TimePeriod time_period = 1; |
| + optional int32 active_duration = 2; |
| +} |
| + |
| // This captures launch events for one app/extension or other installments. |
| message InstallableLaunch { |
| optional string install_id = 1; |
| @@ -254,11 +259,13 @@ message DeviceStatusReportRequest { |
| // If the mode is unknown, this field should not be set. |
| optional string boot_mode = 3; |
| - // Device active times collection since last report rpc call. |
| - repeated TimePeriod active_time = 4; |
| + // No longer used -- use daily_activity instead. |
|
Mattias Nissler (ping if slow)
2012/02/15 14:56:21
I guess you mean active_period?
Patrick Dubroy
2012/02/15 15:37:25
Done.
|
| + repeated TimePeriod active_time = 4 [deprecated=true]; |
| // The browser version string as shown in the About dialog. |
| optional string browser_version = 5; |
| + |
| + repeated ActiveTimePeriod active_period = 6; |
|
Mattias Nissler (ping if slow)
2012/02/15 14:56:21
Could use a comment saying that this is a map of d
Patrick Dubroy
2012/02/15 15:37:25
Done.
|
| } |
| // Report session (a user on one device) level status. |