| 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..dc46c835d5a60478d3a4e9ac904cb454b16a87cc 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_gpu_info(self):
|
| + return self._browser_backend.supports_gpu_info
|
| +
|
| + def GetGPUInfo(self):
|
| + """Returns information about the GPU on the system, if available.
|
| +
|
| + See the documentation for the GPUInfo class for more details."""
|
| + return self._browser_backend.GetGPUInfo()
|
|
|