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

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

Issue 23512005: BrowserOptions.extra_browser_args is now a set. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « tools/perf/measurements/blink_perf.py ('k') | tools/perf/measurements/memory.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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_measurement 5 from telemetry.page import page_measurement
6 6
7 7
8 class ImageDecoding(page_measurement.PageMeasurement): 8 class ImageDecoding(page_measurement.PageMeasurement):
9 def CustomizeBrowserOptions(self, options): 9 def CustomizeBrowserOptions(self, options):
10 options.extra_browser_args.append('--enable-gpu-benchmarking') 10 options.AppendExtraBrowserArgs('--enable-gpu-benchmarking')
11 11
12 def WillNavigateToPage(self, page, tab): 12 def WillNavigateToPage(self, page, tab):
13 tab.ExecuteJavaScript(""" 13 tab.ExecuteJavaScript("""
14 if (window.chrome && 14 if (window.chrome &&
15 chrome.gpuBenchmarking && 15 chrome.gpuBenchmarking &&
16 chrome.gpuBenchmarking.clearImageCache) { 16 chrome.gpuBenchmarking.clearImageCache) {
17 chrome.gpuBenchmarking.clearImageCache(); 17 chrome.gpuBenchmarking.clearImageCache();
18 } 18 }
19 """) 19 """)
20 tab.StartTimelineRecording() 20 tab.StartTimelineRecording()
(...skipping 23 matching lines...) Expand all
44 decode_image_events = decode_image_events[-min_iterations:] 44 decode_image_events = decode_image_events[-min_iterations:]
45 45
46 durations = [d.duration for d in decode_image_events] 46 durations = [d.duration for d in decode_image_events]
47 if not durations: 47 if not durations:
48 results.Add('ImageDecoding_avg', 'ms', 'unsupported') 48 results.Add('ImageDecoding_avg', 'ms', 'unsupported')
49 return 49 return
50 image_decoding_avg = sum(durations) / len(durations) 50 image_decoding_avg = sum(durations) / len(durations)
51 results.Add('ImageDecoding_avg', 'ms', image_decoding_avg) 51 results.Add('ImageDecoding_avg', 'ms', image_decoding_avg)
52 results.Add('ImageLoading_avg', 'ms', 52 results.Add('ImageLoading_avg', 'ms',
53 tab.EvaluateJavaScript('averageLoadingTimeMs()')) 53 tab.EvaluateJavaScript('averageLoadingTimeMs()'))
OLDNEW
« no previous file with comments | « tools/perf/measurements/blink_perf.py ('k') | tools/perf/measurements/memory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698