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

Unified Diff: telemetry/telemetry/internal/platform/mac_platform_backend.py

Issue 2990673002: [Telemetry] Add support for macOS 10.13 High Sierra. (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « telemetry/telemetry/core/os_version.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/telemetry/internal/platform/mac_platform_backend.py
diff --git a/telemetry/telemetry/internal/platform/mac_platform_backend.py b/telemetry/telemetry/internal/platform/mac_platform_backend.py
index ce4ac7699fbf7bd183ada44413bbc23a1b88cba3..2e434bd587ef2a1203b49df347afa87b7415f12d 100644
--- a/telemetry/telemetry/internal/platform/mac_platform_backend.py
+++ b/telemetry/telemetry/internal/platform/mac_platform_backend.py
@@ -160,6 +160,8 @@ class MacPlatformBackend(posix_platform_backend.PosixPlatformBackend):
return os_version_module.ELCAPITAN
if os_version.startswith('16.'):
return os_version_module.SIERRA
+ if os_version.startswith('17.'):
+ return os_version_module.HIGHSIERRA
raise NotImplementedError('Unknown mac version %s.' % os_version)
« no previous file with comments | « telemetry/telemetry/core/os_version.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698