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

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

Issue 144543007: [Telemetry] Add power usage metric (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace fix Created 6 years, 11 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
« no previous file with comments | « no previous file | tools/perf/metrics/power.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/smoothness.py
diff --git a/tools/perf/measurements/smoothness.py b/tools/perf/measurements/smoothness.py
index 4715afac63810d36cb01a3f8dc83d7c557498305..a84a4acb29204c70fc9cc0627727bbbbafb73f5d 100644
--- a/tools/perf/measurements/smoothness.py
+++ b/tools/perf/measurements/smoothness.py
@@ -2,29 +2,37 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+from metrics import power
from metrics import smoothness
from telemetry.page import page_measurement
+
class Smoothness(page_measurement.PageMeasurement):
def __init__(self):
super(Smoothness, self).__init__('smoothness')
- self._metric = None
+ self._smoothness_metric = None
+ self._power_metric = None
def CustomizeBrowserOptions(self, options):
options.AppendExtraBrowserArgs('--enable-gpu-benchmarking')
+ power.PowerMetric.CustomizeBrowserOptions(options)
def CanRunForPage(self, page):
return hasattr(page, 'smoothness')
def WillRunActions(self, page, tab):
- self._metric = smoothness.SmoothnessMetric()
- self._metric.Start(page, tab)
+ self._power_metric = power.PowerMetric()
+ self._power_metric.Start(page, tab)
+ self._smoothness_metric = smoothness.SmoothnessMetric()
+ self._smoothness_metric.Start(page, tab)
def DidRunAction(self, page, tab, action):
- self._metric.AddActionToIncludeInMetric(action)
+ self._smoothness_metric.AddActionToIncludeInMetric(action)
def DidRunActions(self, page, tab):
- self._metric.Stop(page, tab)
+ self._power_metric.Stop(page, tab)
+ self._smoothness_metric.Stop(page, tab)
def MeasurePage(self, page, tab, results):
- self._metric.AddResults(tab, results)
+ self._power_metric.AddResults(tab, results)
+ self._smoothness_metric.AddResults(tab, results)
« no previous file with comments | « no previous file | tools/perf/metrics/power.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698