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

Unified Diff: tools/telemetry/telemetry/core/browser.py

Issue 21682002: Expose GPU information to Telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactored more code into WebSocketBrowserConnection on nduca's request. Created 7 years, 4 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/browser.py
diff --git a/tools/telemetry/telemetry/core/browser.py b/tools/telemetry/telemetry/core/browser.py
index a04b05857b923d14a260cbfce35045288076b8f0..d35a7fc78967e00cefba5ce9d730741d06259e93 100644
--- a/tools/telemetry/telemetry/core/browser.py
+++ b/tools/telemetry/telemetry/core/browser.py
@@ -317,3 +317,13 @@ class Browser(object):
def GetStackTrace(self):
return self._browser_backend.GetStackTrace()
+
+ @property
+ def supports_system_info(self):
+ return self._browser_backend.supports_system_info
+
+ def GetSystemInfo(self):
+ """Returns low-level information about the system, if available.
+
+ See the documentation of the SystemInfo class for more details."""
+ return self._browser_backend.GetSystemInfo()

Powered by Google App Engine
This is Rietveld 408576698