Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/devtools/mobileharness/api/query/proto/lab_query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ message LabQuery {
LabViewRequest lab_view_request = 4;
DeviceViewRequest device_view_request = 5;
}

// Whether to use persisted dimensions.
bool use_persisted_dimensions = 6;
}

// Paging information to return a sub list of the result.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ message DeviceProfile {
.mobileharness.api.model.DeviceFeature feature = 1; // Required.
}

// Next ID: 18
// Next ID: 19
message DeviceCondition {
// Optional. Device allocation in Master. Client and Lab Server may have delay
// to get this allocation info.
Expand Down Expand Up @@ -101,6 +101,9 @@ message DeviceCondition {

// Optional: The last sign up time. This is the Lab Server side time.
int64 last_sign_up_time_ms_from_lab = 17;

// Optional: The last known good values of persisted dimensions.
repeated .mobileharness.api.model.DeviceDimension persisted_dimension = 18;
}

message TempDimension {
Expand Down