| Index: tools/telemetry/telemetry/core/platform/cros_device.py
|
| diff --git a/tools/telemetry/telemetry/core/platform/cros_device.py b/tools/telemetry/telemetry/core/platform/cros_device.py
|
| index c404f0c00d370bf1f614ba4767b41ae94d8d210f..9e5d41735bc3ae2237b97d5ef9633ab1e259f01c 100644
|
| --- a/tools/telemetry/telemetry/core/platform/cros_device.py
|
| +++ b/tools/telemetry/telemetry/core/platform/cros_device.py
|
| @@ -9,7 +9,8 @@ from telemetry.core.platform import device
|
| class CrOSDevice(device.Device):
|
| def __init__(self, host_name, ssh_identity=None):
|
| super(CrOSDevice, self).__init__(
|
| - name='ChromeOs with host %s' % host_name, device_id=host_name)
|
| + name='ChromeOs with host %s' % host_name,
|
| + guid='cros:%s' % host_name)
|
| assert host_name
|
| self._host_name = host_name
|
| self._ssh_identity = ssh_identity
|
|
|