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

Side by Side Diff: tools/perf/benchmarks/energy.py

Issue 1092393002: Telemetry: Quiescent power benchmarks for Mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@safari-backend
Patch Set: Fix missing idle_wakeups_renderer Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | tools/perf/measurements/energy.py » ('j') | tools/perf/measurements/energy.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from telemetry import benchmark
6
7 from measurements import energy
8 import page_sets
9
10
11 @benchmark.Enabled('mac')
12 class EnergyTop10(benchmark.Benchmark):
13 """Top 10 energy test."""
14 test = energy.Energy
15 page_set = page_sets.Top10PageSet
16 @classmethod
17 def Name(cls):
18 return 'energy.top_10'
19
20
21 @benchmark.Enabled('mac')
22 class EnergyTop25(benchmark.Benchmark):
23 """Top 25 energy test."""
24 test = energy.Energy
25 page_set = page_sets.Top25PageSet
26 @classmethod
27 def Name(cls):
28 return 'energy.top_25'
OLDNEW
« no previous file with comments | « no previous file | tools/perf/measurements/energy.py » ('j') | tools/perf/measurements/energy.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698