am 9e45f201: Merge "metricsd: Rename build_target_id to product_id."

* commit '9e45f201d1ef924788bea56c48b9fce1a5dc30f0':
  metricsd: Rename build_target_id to product_id.
This commit is contained in:
Bertrand Simonnet 2015-10-07 20:01:08 +00:00 committed by Android Git Automerger
commit a4d9a59a07
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ message SystemProfileProto {
optional string application_locale = 4;
message BrilloDeviceData {
optional string build_target_id = 1;
optional string product_id = 1;
}
optional BrilloDeviceData brillo = 21;

View file

@ -136,7 +136,7 @@ bool SystemProfileCache::Populate(
profile_proto->set_channel(profile_.channel);
metrics::SystemProfileProto_BrilloDeviceData* device_data =
profile_proto->mutable_brillo();
device_data->set_build_target_id(profile_.product_id);
device_data->set_product_id(profile_.product_id);
return true;
}