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

Unified Diff: tools/telemetry/telemetry/core/chrome/cros_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/cros_platform_backend.py
diff --git a/tools/telemetry/telemetry/core/chrome/cros_platform_backend.py b/tools/telemetry/telemetry/core/chrome/cros_platform_backend.py
index 3280540f6e4257ce372a874cd9c63937b611892a..cbfb6f19266e941c93f0c35676cc3d0cc5b72b86 100644
--- a/tools/telemetry/telemetry/core/chrome/cros_platform_backend.py
+++ b/tools/telemetry/telemetry/core/chrome/cros_platform_backend.py
@@ -34,12 +34,15 @@ class CrosPlatformBackend(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