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

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

Issue 1159733003: Added Tough Texture upload page set to smoothness benchmark. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added copyright Created 5 years, 6 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/page_sets/tough_texture_upload_cases.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 core import perf_benchmark 5 from core import perf_benchmark
6 6
7 from benchmarks import silk_flags 7 from benchmarks import silk_flags
8 from benchmarks import webgl_expectations 8 from benchmarks import webgl_expectations
9 from measurements import smoothness 9 from measurements import smoothness
10 from telemetry import benchmark 10 from telemetry import benchmark
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 return 'smoothness.sync_scroll.pathological_mobile_sites' 388 return 'smoothness.sync_scroll.pathological_mobile_sites'
389 389
390 390
391 class SmoothnessToughAnimatedImageCases(perf_benchmark.PerfBenchmark): 391 class SmoothnessToughAnimatedImageCases(perf_benchmark.PerfBenchmark):
392 test = smoothness.Smoothness 392 test = smoothness.Smoothness
393 page_set = page_sets.ToughAnimatedImageCasesPageSet 393 page_set = page_sets.ToughAnimatedImageCasesPageSet
394 394
395 @classmethod 395 @classmethod
396 def Name(cls): 396 def Name(cls):
397 return 'smoothness.tough_animated_image_cases' 397 return 'smoothness.tough_animated_image_cases'
398
399
400 class SmoothnessToughTextureUploadCases(perf_benchmark.PerfBenchmark):
401 test = smoothness.Smoothness
402 page_set = page_sets.ToughTextureUploadCasesPageSet
403
404 @classmethod
405 def Name(cls):
406 return 'smoothness.tough_texture_upload_cases'
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_texture_upload_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698