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