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

Unified Diff: tools/telemetry/telemetry/core/platform/linux_platform_backend.py

Issue 809753002: Revert of telemetry: Clean up SurfaceFlinger statistics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/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()

Powered by Google App Engine
This is Rietveld 408576698