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

Side by Side Diff: tools/perf/measurements/webrtc.py

Issue 1914233003: [tools/perf] Delete unused variable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « tools/perf/measurements/v8_gc_times.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from telemetry.page import page_test 5 from telemetry.page import page_test
6 6
7 from metrics import cpu 7 from metrics import cpu
8 from metrics import media 8 from metrics import media
9 from metrics import memory 9 from metrics import memory
10 from metrics import power 10 from metrics import power
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 self._memory_metric.Stop(page, tab) 58 self._memory_metric.Stop(page, tab)
59 self._memory_metric.AddResults(tab, results) 59 self._memory_metric.AddResults(tab, results)
60 60
61 self._power_metric.Stop(page, tab) 61 self._power_metric.Stop(page, tab)
62 self._power_metric.AddResults(tab, results) 62 self._power_metric.AddResults(tab, results)
63 63
64 self._webrtc_stats_metric.Stop(page, tab) 64 self._webrtc_stats_metric.Stop(page, tab)
65 self._webrtc_stats_metric.AddResults(tab, results) 65 self._webrtc_stats_metric.AddResults(tab, results)
66 66
67 def DidRunPage(self, platform): 67 def DidRunPage(self, platform):
68 del platform # unused
68 self._power_metric.Close() 69 self._power_metric.Close()
OLDNEW
« no previous file with comments | « tools/perf/measurements/v8_gc_times.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698