| Index: tools/telemetry/telemetry/core/platform/platform_backend.py
|
| diff --git a/tools/telemetry/telemetry/core/platform/platform_backend.py b/tools/telemetry/telemetry/core/platform/platform_backend.py
|
| index 30803e7d330d8331e42be4c328aebd43934e0eb2..4dca1dce2af73ebde3c8fca94200e1c82b2d1a69 100644
|
| --- a/tools/telemetry/telemetry/core/platform/platform_backend.py
|
| +++ b/tools/telemetry/telemetry/core/platform/platform_backend.py
|
| @@ -145,16 +145,13 @@
|
| def wpr_https_device_port(self):
|
| return self._network_controller_backend.wpr_https_device_port
|
|
|
| - def IsRawDisplayFrameRateSupported(self):
|
| - return False
|
| -
|
| - def StartRawDisplayFrameRateMeasurement(self):
|
| - raise NotImplementedError()
|
| -
|
| - def StopRawDisplayFrameRateMeasurement(self):
|
| - raise NotImplementedError()
|
| -
|
| - def GetRawDisplayFrameRateMeasurements(self):
|
| + def IsDisplayTracingSupported(self):
|
| + return False
|
| +
|
| + def StartDisplayTracing(self):
|
| + raise NotImplementedError()
|
| +
|
| + def StopDisplayTracing(self):
|
| raise NotImplementedError()
|
|
|
| def SetFullPerformanceModeEnabled(self, enabled):
|
|
|