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

Unified Diff: tools/telemetry/telemetry/core/platform/cros_device.py

Issue 564173002: (Telemetry) Rename Device.device_id to Device.guid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: 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
« no previous file with comments | « tools/telemetry/telemetry/core/platform/__init__.py ('k') | tools/telemetry/telemetry/core/platform/device.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698