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

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

Issue 12499006: Telemetry on android: improves RawDisplayFrameRateMeasurement. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 9 months 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/chrome/linux_platform_backend.py
diff --git a/tools/telemetry/telemetry/core/chrome/linux_platform_backend.py b/tools/telemetry/telemetry/core/chrome/linux_platform_backend.py
index 9c4267aac4f26c911bd4c086a26fc5e3e3e41808..4a34eb494f778e12229859105c4c6581cd47c664 100644
--- a/tools/telemetry/telemetry/core/chrome/linux_platform_backend.py
+++ b/tools/telemetry/telemetry/core/chrome/linux_platform_backend.py
@@ -26,12 +26,15 @@ class LinuxPlatformBackend(platform_backend.PlatformBackend):
return retval
# pylint: disable=W0613
- def StartRawDisplayFrameRateMeasurement(self, trace_tag):
+ 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