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

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

Issue 765773004: telemetry: Clean up SurfaceFlinger statistics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean-up 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/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 @@ class PlatformBackend(object):
def wpr_https_device_port(self):
return self._network_controller_backend.wpr_https_device_port
- def IsRawDisplayFrameRateSupported(self):
+ def IsDisplayTracingSupported(self):
return False
- def StartRawDisplayFrameRateMeasurement(self):
+ def StartDisplayTracing(self):
raise NotImplementedError()
- def StopRawDisplayFrameRateMeasurement(self):
- raise NotImplementedError()
-
- def GetRawDisplayFrameRateMeasurements(self):
+ def StopDisplayTracing(self):
raise NotImplementedError()
def SetFullPerformanceModeEnabled(self, enabled):

Powered by Google App Engine
This is Rietveld 408576698