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

Unified Diff: tools/perf/measurements/smoothness_unittest.py

Issue 1242943005: [Android] Support idle wakeup measurement with /proc/timer_stats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Working test Created 5 years, 5 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/perf/measurements/smoothness_unittest.py
diff --git a/tools/perf/measurements/smoothness_unittest.py b/tools/perf/measurements/smoothness_unittest.py
index dae3365c0d7a83dc11f993834776d0e8bd2901d9..d6110210eb1c905bdb2bfb89addb9a2dfdf35743 100644
--- a/tools/perf/measurements/smoothness_unittest.py
+++ b/tools/perf/measurements/smoothness_unittest.py
@@ -26,6 +26,8 @@ class FakeTracingController(object):
class FakePlatform(object):
def __init__(self):
self.tracing_controller = FakeTracingController()
+ def CanMeasureIdleWakeUps(self):
nednguyen 2015/07/29 22:22:45 Why do you need to add this? IIRC, we removed powe
+ return False
class FakeBrowser(object):

Powered by Google App Engine
This is Rietveld 408576698