Index: tools/telemetry/telemetry/core/platform/linux_platform_backend.py |
diff --git a/tools/telemetry/telemetry/core/platform/linux_platform_backend.py b/tools/telemetry/telemetry/core/platform/linux_platform_backend.py |
index f44084c2fd2478f9cc5aa43ddba526ac9de80c92..d29fd4e2efc282b8bd95a78356403d489076a029 100644 |
--- a/tools/telemetry/telemetry/core/platform/linux_platform_backend.py |
+++ b/tools/telemetry/telemetry/core/platform/linux_platform_backend.py |
@@ -29,6 +29,15 @@ |
def __init__(self): |
super(LinuxPlatformBackend, self).__init__() |
self._power_monitor = msr_power_monitor.MsrPowerMonitor(self) |
+ |
+ def StartRawDisplayFrameRateMeasurement(self): |
+ raise NotImplementedError() |
+ |
+ def StopRawDisplayFrameRateMeasurement(self): |
+ raise NotImplementedError() |
+ |
+ def GetRawDisplayFrameRateMeasurements(self): |
+ raise NotImplementedError() |
def IsThermallyThrottled(self): |
raise NotImplementedError() |